diff options
author | Andrea Mattavelli <andreamattavelli@users.noreply.github.com> | 2017-03-06 08:01:18 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-06 08:01:18 +0000 |
commit | d2490908daee27974f8a03c8c7c80930d39f6098 (patch) | |
tree | 568961bf4867a316ddf6ed200876bca74afca0e6 /test/Feature/LinkLLVMLib.c | |
parent | 930cd1750857111e7cc08812e148cb228f70e1b8 (diff) | |
parent | abc44d16c3f8ae6984630537254bab2027cae2f5 (diff) | |
download | klee-d2490908daee27974f8a03c8c7c80930d39f6098.tar.gz |
Merge pull request #609 from ccadar/warnings
Added new option --warnings-only-to-file which causes warnings to be written to warnings.txt only.
Diffstat (limited to 'test/Feature/LinkLLVMLib.c')
-rw-r--r-- | test/Feature/LinkLLVMLib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Feature/LinkLLVMLib.c b/test/Feature/LinkLLVMLib.c index 95437094..34931409 100644 --- a/test/Feature/LinkLLVMLib.c +++ b/test/Feature/LinkLLVMLib.c @@ -3,7 +3,7 @@ // // RUN: %llvmgcc %s -g -emit-llvm -O0 -c -o %t2.bc -DLINK_LLVM_LIB_TEST_EXEC // RUN: rm -rf %t.klee-out -// RUN: %klee --link-llvm-lib %t1.a --output-dir=%t.klee-out --emit-all-errors %t2.bc 2>&1 | FileCheck %s +// RUN: %klee --link-llvm-lib %t1.a --output-dir=%t.klee-out --emit-all-errors --warnings-only-to-file=false %t2.bc 2>&1 | FileCheck %s #ifdef LINK_LLVM_LIB_TEST_EXEC extern void printint(int d); |