diff options
author | Vitaly Buka <vitalybuka@google.com> | 2019-01-21 02:22:06 +0000 |
---|---|---|
committer | Vitaly Buka <vitalybuka@google.com> | 2019-01-21 02:22:06 +0000 |
commit | d733430c19ed9453b0b66943b83a4a62c83c6ade (patch) | |
tree | 4082788b4262dee0b42fcb5c8c228ea5fc79bda0 /compiler-rt/test/fuzzer/fuzzer-alignment-assumption.test | |
parent | 2b3d8b32860909efdeed21c7a7440c2d6d5e9e37 (diff) | |
download | bcm5719-llvm-d733430c19ed9453b0b66943b83a4a62c83c6ade.tar.gz bcm5719-llvm-d733430c19ed9453b0b66943b83a4a62c83c6ade.zip |
[fuzzer] Fix test checks broken after license header update
llvm-svn: 351717
Diffstat (limited to 'compiler-rt/test/fuzzer/fuzzer-alignment-assumption.test')
-rw-r--r-- | compiler-rt/test/fuzzer/fuzzer-alignment-assumption.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/test/fuzzer/fuzzer-alignment-assumption.test b/compiler-rt/test/fuzzer/fuzzer-alignment-assumption.test index 6db77e19ccc..4d62877abfb 100644 --- a/compiler-rt/test/fuzzer/fuzzer-alignment-assumption.test +++ b/compiler-rt/test/fuzzer/fuzzer-alignment-assumption.test @@ -1,7 +1,7 @@ RUN: rm -f %t-AlignmentAssumptionTest-Ubsan RUN: %cpp_compiler -fsanitize=alignment -fno-sanitize-recover=all %S/AlignmentAssumptionTest.cpp -o %t-AlignmentAssumptionTest-Ubsan RUN: not %run %t-AlignmentAssumptionTest-Ubsan 2>&1 | FileCheck %s -CHECK: AlignmentAssumptionTest.cpp:22:39: runtime error: assumption of 32768 byte alignment for pointer of type 'const {{.*}} *' (aka 'const unsigned char *') failed +CHECK: AlignmentAssumptionTest.cpp:23:48: runtime error: assumption of 32768 byte alignment for pointer of type 'const {{.*}} *' (aka 'const unsigned char *') failed CHECK: 0x{{.*}}: note: address is {{.*}} aligned, misalignment offset is {{.*}} byte CHECK: Test unit written to ./crash- |