so I could use llvm-lit /path/to/*.test. If preferred, this could
be done for other parts like ASan etc..
Details
- Reviewers
rnk morehouse george.karpenkov kcc jdenny
Diff Detail
- Repository
- rG LLVM Github Monorepo
Unit Tests
Event Timeline
Unit tests: fail. 62153 tests passed, 5 failed and 812 were skipped.
failed: libc++.std/language_support/cmp/cmp_partialord/partialord.pass.cpp failed: libc++.std/language_support/cmp/cmp_strongeq/cmp.strongeq.pass.cpp failed: libc++.std/language_support/cmp/cmp_strongord/strongord.pass.cpp failed: libc++.std/language_support/cmp/cmp_weakeq/cmp.weakeq.pass.cpp failed: libc++.std/language_support/cmp/cmp_weakord/weakord.pass.cpp
clang-tidy: pass.
clang-format: pass.
Build artifacts: diff.json, clang-tidy.txt, clang-format.patch, CMakeCache.txt, console-log.txt, test-results.xml
Pre-merge checks is in beta. Report issue. Please join beta or enable it for your project.
Unit tests: fail. 62152 tests passed, 5 failed and 811 were skipped.
failed: libc++.std/language_support/cmp/cmp_partialord/partialord.pass.cpp failed: libc++.std/language_support/cmp/cmp_strongeq/cmp.strongeq.pass.cpp failed: libc++.std/language_support/cmp/cmp_strongord/strongord.pass.cpp failed: libc++.std/language_support/cmp/cmp_weakeq/cmp.weakeq.pass.cpp failed: libc++.std/language_support/cmp/cmp_weakord/weakord.pass.cpp
clang-tidy: pass.
clang-format: pass.
Build artifacts: diff.json, clang-tidy.txt, clang-format.patch, CMakeCache.txt, console-log.txt, test-results.xml
Pre-merge checks is in beta. Report issue. Please join beta or enable it for your project.
compiler-rt/test/fuzzer/CMakeLists.txt | ||
---|---|---|
67–68 | This isn't going to work well when the same test suite is configured multiple times. If you look at llvm-lit.in, it just adds a dictionary entry. Adding multiple entries for the same source directory will make the later ones overwrite the first, and the choice will be arbitrary. If you could generalize it a bit to run the same test in all supported configs (static/dynamic/32/64) for example, that would be useful. |
compiler-rt/test/fuzzer/CMakeLists.txt | ||
---|---|---|
67–68 | Understood. I'll try to add support for this.
|
This isn't going to work well when the same test suite is configured multiple times. If you look at llvm-lit.in, it just adds a dictionary entry. Adding multiple entries for the same source directory will make the later ones overwrite the first, and the choice will be arbitrary. If you could generalize it a bit to run the same test in all supported configs (static/dynamic/32/64) for example, that would be useful.