Skip to content

Commit

Permalink
smtcomp/test_solver.py:
Browse files Browse the repository at this point in the history
  • Loading branch information
konstantin-korovin committed Jun 13, 2024
1 parent 7745fe8 commit d8ffae2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion smtcomp/test_solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def test(cmd: str, args: list[str], file: str, expected: str) -> None:
all = [cmd] + args + [file]
print(all, flush=True)
# result = subprocess.run(all, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
result = subprocess.run(all, stdout=subprocess.PIPE, stderr=subprocess.STDERR)
result = subprocess.run(all, stdout=subprocess.PIPE)
if result.returncode < 0:
returnsignal = -result.returncode
else:
Expand Down

0 comments on commit d8ffae2

Please sign in to comment.