about summary refs log tree commit diff homepage
path: root/test/Concrete
diff options
context:
space:
mode:
authorCristian Cadar <c.cadar@imperial.ac.uk>2019-03-11 17:26:20 +0000
committerMartinNowack <martin.nowack@gmail.com>2019-03-13 10:09:06 +0000
commit50f435267cf3a63a55971bd56d1c34058103c37b (patch)
tree70b31d96576a51ae5f8a654be143f7a1f6799add /test/Concrete
parent562d5516944325e96c91af623197b7d9cd0d9194 (diff)
downloadklee-50f435267cf3a63a55971bd56d1c34058103c37b.tar.gz
Renamed --no-output to --write-no-tests and placed it in the test case category (with --write-cov, --write-cvcs etc.)
Diffstat (limited to 'test/Concrete')
-rwxr-xr-xtest/Concrete/ConcreteTest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Concrete/ConcreteTest.py b/test/Concrete/ConcreteTest.py
index 57ea77d2..22ce92ef 100755
--- a/test/Concrete/ConcreteTest.py
+++ b/test/Concrete/ConcreteTest.py
@@ -35,7 +35,7 @@ def testFile(name, klee_path, lli_path):
     klee_out_path = "Output/%s.klee-out" % (baseName,)
     if os.path.exists(klee_out_path):
         shutil.rmtree(klee_out_path)
-    klee_cmd = klee_path.split() + ['--output-dir=' + klee_out_path,  '--no-output', exeFile]
+    klee_cmd = klee_path.split() + ['--output-dir=' + klee_out_path,  '--write-no-tests', exeFile]
     print("EXECUTING: %s" % (klee_cmd,))
     sys.stdout.flush()