diff options
Diffstat (limited to 'compiler-rt/test/fuzzer/fork.test')
-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 |