()
| 93 | |
| 94 | |
| 95 | def test_cflags_include_paths() -> None: |
| 96 | include_dir = libinfo.find_include_path() |
| 97 | dlpack_dir = libinfo.find_dlpack_include_path() |
| 98 | assert _stdout_for("--cflags") == f"-I{include_dir} -I{dlpack_dir}" |
| 99 | |
| 100 | |
| 101 | def test_ldflags_only_on_unix() -> None: |
nothing calls this directly
no test coverage detected