Three tests fail when building and testing LLVM from the Visual C++ environment
since they use the repo version of lit.py that do not have local customization
builtin_parameters = { 'build_mode' : 'Release' }
https://bugs.llvm.org/show_bug.cgi?id=51072
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
LGTM and I can confirm that this change fixes the check-globals.test that was failing due to this issue. Thanks!
clang/test/utils/update_cc_test_checks/lit.local.cfg | ||
---|---|---|
24 | This patch breaks stand-alone clang builds, because it assumes llvm-lit* will be present in the build directory. This line should be guarded by if not config.llvm_external_lit. |
clang/test/utils/update_cc_test_checks/lit.local.cfg | ||
---|---|---|
24 | Continued in https://reviews.llvm.org/D109000 |
This patch breaks stand-alone clang builds, because it assumes llvm-lit* will be present in the build directory. This line should be guarded by if not config.llvm_external_lit.