Automatically inserted --allow-unused-prefixes=true for tests that are
still failing.
Added a FIXME above each line where this was inserted.
RFC: http://lists.llvm.org/pipermail/llvm-dev/2020-October/146162.html
Automatically inserted --allow-unused-prefixes=true for tests that are
still failing.
Added a FIXME above each line where this was inserted.
RFC: http://lists.llvm.org/pipermail/llvm-dev/2020-October/146162.html
Time | Test | |
---|---|---|
690 ms | linux > AddressSanitizer-x86_64-linux-dynamic.TestCases::asan_update_allocation.cpp Script:
--
: 'RUN: at line 1'; /mnt/disks/ssd0/agent/llvm-project/build/./bin/clang --driver-mode=g++ -fsanitize=address -mno-omit-leaf-frame-pointer -fno-omit-frame-pointer -fno-optimize-sibling-calls -gline-tables-only -m64 -shared-libasan -O0 /mnt/disks/ssd0/agent/llvm-project/compiler-rt/test/asan/TestCases/asan_update_allocation.cpp -o /mnt/disks/ssd0/agent/llvm-project/build/projects/compiler-rt/test/asan/X86_64LinuxDynamicConfig/TestCases/Output/asan_update_allocation.cpp.tmp
| |
1,000 ms | linux > AddressSanitizer-x86_64-linux.TestCases::asan_update_allocation.cpp Script:
--
: 'RUN: at line 1'; /mnt/disks/ssd0/agent/llvm-project/build/./bin/clang --driver-mode=g++ -fsanitize=address -mno-omit-leaf-frame-pointer -fno-omit-frame-pointer -fno-optimize-sibling-calls -gline-tables-only -m64 -O0 /mnt/disks/ssd0/agent/llvm-project/compiler-rt/test/asan/TestCases/asan_update_allocation.cpp -o /mnt/disks/ssd0/agent/llvm-project/build/projects/compiler-rt/test/asan/X86_64LinuxConfig/TestCases/Output/asan_update_allocation.cpp.tmp
| |
110 ms | linux > Clang Tools.clang-tidy/checkers::modernize-loop-convert-reverse.cpp Script:
--
: 'RUN: at line 1'; /usr/bin/python3.8 /mnt/disks/ssd0/agent/llvm-project/clang-tools-extra/test/../test/clang-tidy/check_clang_tidy.py -std=c++20 -check-suffixes=,RANGES /mnt/disks/ssd0/agent/llvm-project/clang-tools-extra/test/clang-tidy/checkers/modernize-loop-convert-reverse.cpp modernize-loop-convert /mnt/disks/ssd0/agent/llvm-project/build/tools/clang/tools/extra/test/clang-tidy/checkers/Output/modernize-loop-convert-reverse.cpp.tmp
| |
350 ms | linux > HWAddressSanitizer-x86_64.TestCases::sizes.cpp Script:
--
: 'RUN: at line 3'; /mnt/disks/ssd0/agent/llvm-project/build/./bin/clang --driver-mode=g++ -m64 -gline-tables-only -fsanitize=hwaddress -fuse-ld=lld -mcmodel=large -mllvm -hwasan-globals -mllvm -hwasan-use-short-granules -mllvm -hwasan-instrument-landing-pads=0 -mllvm -hwasan-instrument-personality-functions /mnt/disks/ssd0/agent/llvm-project/compiler-rt/test/hwasan/TestCases/sizes.cpp -nostdlib++ -lstdc++ -o /mnt/disks/ssd0/agent/llvm-project/build/projects/compiler-rt/test/hwasan/X86_64/TestCases/Output/sizes.cpp.tmp
| |
340 ms | linux > HWAddressSanitizer-x86_64.TestCases/Linux::reuse-threads.cpp Script:
--
: 'RUN: at line 2'; /mnt/disks/ssd0/agent/llvm-project/build/./bin/clang --driver-mode=g++ -m64 -gline-tables-only -fsanitize=hwaddress -fuse-ld=lld -mcmodel=large -mllvm -hwasan-globals -mllvm -hwasan-use-short-granules -mllvm -hwasan-instrument-landing-pads=0 -mllvm -hwasan-instrument-personality-functions -mllvm -hwasan-instrument-stack=0 /mnt/disks/ssd0/agent/llvm-project/compiler-rt/test/hwasan/TestCases/Linux/reuse-threads.cpp -o /mnt/disks/ssd0/agent/llvm-project/build/projects/compiler-rt/test/hwasan/X86_64/TestCases/Linux/Output/reuse-threads.cpp.tmp && env HWASAN_OPTIONS=disable_allocator_tagging=1:random_tags=0:verbose_threads=1 /mnt/disks/ssd0/agent/llvm-project/build/projects/compiler-rt/test/hwasan/X86_64/TestCases/Linux/Output/reuse-threads.cpp.tmp 2>&1 | FileCheck /mnt/disks/ssd0/agent/llvm-project/compiler-rt/test/hwasan/TestCases/Linux/reuse-threads.cpp
| |
View Full Test Results (34 Failed) |
FYI - I realize the change is enormous. I don't necessarily mean to land it as-is, we can chunk it by directories and iteratively update this as those land.
Maybe one way to do this is to do what @RKSimon suggests in the D90281, and to enable it on a per-directory basis using lit.local.cfg. That would potentially require changing the "0 or 1" occurrences limitation of the option, in favour of "last one wins" (or first one). Then, you make the change in the lit.local.cfg, flipping the default in each directory as you go. Eventually, once all tests that need it are covered, you can just change the default in FileCheck itself. How does that sound?
I haven't tried that yet. @RKSimon's case was that the folder was fixed, and we'd want to stop the bleeding there. Now, thinking more about it: because FileCheck won't accept more than one occurrence of --allow-unused-prefixes, if a directory has cases where we want to allow duplicates, we'd probably want lit.local.cfg to do 2 things:
I'm not very versed with lit.local.cfg - does the above capture what you imagined? (@RKSimon too)
because FileCheck won't accept more than one occurrence of --allow-unused-prefixes
Perhaps this is a fixable issue?