diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/Feature/MemoryLimit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Feature/MemoryLimit.c b/test/Feature/MemoryLimit.c index 1cdf7260..e9635cab 100644 --- a/test/Feature/MemoryLimit.c +++ b/test/Feature/MemoryLimit.c @@ -9,14 +9,14 @@ // RUN: %klee --output-dir=%t.klee-out --max-memory=20 %t.little.bc > %t.little.log // RUN: not grep -q "MALLOC FAILED" %t.little.log // RUN: not grep -q "DONE" %t.little.log -// RUN: grep "WARNING: killing 1 states (over memory cap)" %t.klee-out/warnings.txt +// RUN: grep "WARNING: killing 1 states (over memory cap" %t.klee-out/warnings.txt // RUN: %clang -emit-llvm -g -c %s -o %t.big.bc // RUN: rm -rf %t.klee-out // RUN: %klee --output-dir=%t.klee-out --max-memory=20 %t.big.bc > %t.big.log 2> %t.big.err // RUN: not grep -q "MALLOC FAILED" %t.big.log // RUN: not grep -q "DONE" %t.big.log -// RUN: grep "WARNING: killing 1 states (over memory cap)" %t.klee-out/warnings.txt +// RUN: grep "WARNING: killing 1 states (over memory cap" %t.klee-out/warnings.txt #include <stdlib.h> #include <stdio.h> |