Skip to content

Commit

Permalink
Fix tests that used --timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
disconnect3d committed Jan 10, 2019
1 parent 324504e commit 97cfde0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_binaries.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def test_timeout(self):
with open(os.path.join(os.pardir, self.test_dir, 'output.log'), "w") as output:
subprocess.check_call([PYTHON_BIN, '-m', 'manticore',
'--workspace', workspace,
'--timeout', '1',
'--core.timeout', '1',
'--procs', '4',
filename,
'+++++++++'], stdout=output)
Expand All @@ -137,7 +137,7 @@ def test_solidity_timeout(self):
cmd = [
PYTHON_BIN, '-m', 'manticore',
'--workspace', workspace,
'--timeout', str(timeout_secs),
'--core.timeout', str(timeout_secs),
'--no-color',
filename
]
Expand Down Expand Up @@ -299,7 +299,7 @@ def test_decree(self):
workspace = os.path.join(self.test_dir, 'workspace')
self._run_with_timeout([PYTHON_BIN, '-m', 'manticore',
'--workspace', workspace,
'--timeout', '20',
'--core.timeout', '20',
'--proc', '4',
'--no-color',
'--policy', 'uncovered',
Expand Down

0 comments on commit 97cfde0

Please sign in to comment.