[compiler-rt] r367586 - try to fix bots after r367562
Nico Weber via llvm-commits
llvm-commits at lists.llvm.org
Thu Aug 1 10:30:41 PDT 2019
Author: nico
Date: Thu Aug 1 10:30:41 2019
New Revision: 367586
URL: http://llvm.org/viewvc/llvm-project?rev=367586&view=rev
Log:
try to fix bots after r367562
Modified:
compiler-rt/trunk/test/msan/msan_copy_shadow.cc
Modified: compiler-rt/trunk/test/msan/msan_copy_shadow.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/msan/msan_copy_shadow.cc?rev=367586&r1=367585&r2=367586&view=diff
==============================================================================
--- compiler-rt/trunk/test/msan/msan_copy_shadow.cc (original)
+++ compiler-rt/trunk/test/msan/msan_copy_shadow.cc Thu Aug 1 10:30:41 2019
@@ -26,10 +26,10 @@ int main() {
assert(__msan_test_shadow(b + 3, 1) == -1);
__msan_check_mem_is_initialized(b, 4);
// CHECK: use-of-uninitialized-value
- // CHECK: {{in main.*msan_copy_shadow.cpp:}}[[@LINE-2]]
+ // CHECK: {{in main.*msan_copy_shadow.cc:}}[[@LINE-2]]
// CHECK: Uninitialized value was stored to memory at
- // CHECK-FULL-STACK: {{in main.*msan_copy_shadow.cpp:}}[[@LINE-8]]
+ // CHECK-FULL-STACK: {{in main.*msan_copy_shadow.cc:}}[[@LINE-8]]
// CHECK-SHORT-STACK: {{in __msan_copy_shadow .*msan_interceptors.cpp:}}
// CHECK: Uninitialized value was created by a heap allocation
- // CHECK: {{in main.*msan_copy_shadow.cpp:}}[[@LINE-23]]
+ // CHECK: {{in main.*msan_copy_shadow.cc:}}[[@LINE-23]]
}
More information about the llvm-commits
mailing list