diff options
author | Cristian Cadar <c.cadar@imperial.ac.uk> | 2019-03-07 09:53:03 +0000 |
---|---|---|
committer | MartinNowack <martin.nowack@gmail.com> | 2019-03-07 12:02:13 +0000 |
commit | 77c1bfbb3b4d88dfcf92b77791fe170899d84b85 (patch) | |
tree | 43035866b8a18011f7d40889c6781d61fc09cd30 /test/Feature/MemoryLimit.c | |
parent | d8f820dc2521064f68c124621f30e4e0fdd0bcc0 (diff) | |
download | klee-77c1bfbb3b4d88dfcf92b77791fe170899d84b85.tar.gz |
Renamed %llvmgcc and %llvmgxx to %clang and %clangxx respectively.
Diffstat (limited to 'test/Feature/MemoryLimit.c')
-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 ce4bc00f..d1139aed 100644 --- a/test/Feature/MemoryLimit.c +++ b/test/Feature/MemoryLimit.c @@ -2,14 +2,14 @@ // small and large allocations (large allocations commonly use mmap(), which can // follow a separate path in the allocator and statistics reporting). -// RUN: %llvmgcc -emit-llvm -DLITTLE_ALLOC -g -c %s -o %t.little.bc +// RUN: %clang -emit-llvm -DLITTLE_ALLOC -g -c %s -o %t.little.bc // RUN: rm -rf %t.klee-out // 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: %llvmgcc -emit-llvm -g -c %s -o %t.big.bc +// 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 |