about summary refs log tree commit diff homepage
path: root/test/Concrete/ConcreteTest.py
diff options
context:
space:
mode:
authorCristian Cadar <c.cadar@imperial.ac.uk>2014-10-09 11:17:55 +0100
committerCristian Cadar <c.cadar@imperial.ac.uk>2014-10-09 11:17:55 +0100
commit492565b392831866fefef748917705a824f6f29f (patch)
tree7aa85a5e444ddfe0ec1c251a6ab0b61517972e34 /test/Concrete/ConcreteTest.py
parent0c8c812db1d331f1e49e27ccd35f1288e58d97e6 (diff)
parent86f5f5edbdd24b793e1f9eff4b338d867f6dc97f (diff)
downloadklee-492565b392831866fefef748917705a824f6f29f.tar.gz
Merge pull request #166 from willemp/willem/klee_opts_to_concrete_tests
Fixes support for passing arguments to klee in the ConcreteTests.
Diffstat (limited to 'test/Concrete/ConcreteTest.py')
-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 290991b7..754c0fe6 100755
--- a/test/Concrete/ConcreteTest.py
+++ b/test/Concrete/ConcreteTest.py
@@ -30,7 +30,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, '--output-dir=' + klee_out_path,  '--no-output', exeFile]
+    klee_cmd = klee_path.split() + ['--output-dir=' + klee_out_path,  '--no-output', exeFile]
     print("EXECUTING: %s" % (klee_cmd,))
     sys.stdout.flush()