s-perron wrote: > As I stated in the description: > > > I have not been able to run the tests myself as I am unsure which project > > runs the correct test. Any guidance on how I can test myself would be > > helpful. > > How can I do this?
The lit tests are build targets. The clang tests are separate from the llvm backend tests. This will run the HLSL tests in Clang: ``` ninja check-clang-codegenhlsl check-clang-ast-hlsl check-clang-semahlsl ``` This will run the tests for the SPIR-V and DirectX backend: ``` ninja check-llvm-codegen-spirv ninja check-llvm-codegen-directx ``` https://github.com/llvm/llvm-project/pull/164385 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
