()
| 69 | |
| 70 | |
| 71 | def test_libfiles_reports_platform_library() -> None: |
| 72 | output = _stdout_for("--libfiles") |
| 73 | if sys.platform.startswith("win32"): |
| 74 | expected = libinfo.find_windows_implib() |
| 75 | else: |
| 76 | expected = libinfo.find_libtvm_ffi() |
| 77 | assert output == expected |
| 78 | assert Path(output).is_file() |
| 79 | |
| 80 | |
| 81 | def test_libs_reports_link_target() -> None: |
nothing calls this directly
no test coverage detected