diff options
author | Jonathan Metzman <metzman@chromium.org> | 2019-04-30 17:58:58 +0000 |
---|---|---|
committer | Jonathan Metzman <metzman@chromium.org> | 2019-04-30 17:58:58 +0000 |
commit | 17bd74d406550f89d2e43079acb936ab5e973e04 (patch) | |
tree | c48a6c405d86fde066914146955fbb92f90e63b3 | |
parent | 5a271cd75838cf287fa05f0983d5855e4786e2d1 (diff) | |
download | bcm5719-llvm-17bd74d406550f89d2e43079acb936ab5e973e04.tar.gz bcm5719-llvm-17bd74d406550f89d2e43079acb936ab5e973e04.zip |
remove extra zeros
llvm-svn: 359589
-rw-r--r-- | compiler-rt/test/fuzzer/fork.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/test/fuzzer/fork.test b/compiler-rt/test/fuzzer/fork.test index 25d6c15efb9..9de17f324e1 100644 --- a/compiler-rt/test/fuzzer/fork.test +++ b/compiler-rt/test/fuzzer/fork.test @@ -12,7 +12,7 @@ RUN: %cpp_compiler %S/OutOfMemoryTest.cpp -o %t-OutOfMemoryTest RUN: not %run %t-OutOfMemoryTest -fork=1 -ignore_ooms=0 -rss_limit_mb=128 2>&1 | FileCheck %s --check-prefix=OOM # access-violation is the error thrown on Windows. Address will be smaller on i386. -CRASH: {{SEGV|access-violation}} on unknown address {{0x000000000000|0x00000000}} +CRASH: {{SEGV|access-violation}} on unknown address 0x00000000 RUN: %cpp_compiler %S/ShallowOOMDeepCrash.cpp -o %t-ShallowOOMDeepCrash RUN: not %run %t-ShallowOOMDeepCrash -fork=1 -rss_limit_mb=128 2>&1 | FileCheck %s --check-prefix=CRASH |