Skip to content

Commit

Permalink
dbg
Browse files Browse the repository at this point in the history
  • Loading branch information
konstantin-korovin committed Jun 15, 2024
1 parent d6b877e commit 186ec4e
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 @@ -12,6 +12,7 @@ def copy_me(dstdir: Path) -> None:

# copied from tools.py should be factorized
def parse_result(returnsignal: int | None, returncode: int, output: list[str]) -> str:
print(returnsignal, file=sys.stderr)
if returnsignal is None:
status = None
for line in output:
Expand All @@ -27,7 +28,6 @@ def parse_result(returnsignal: int | None, returncode: int, output: list[str]) -
else:
return "unknown"
return "unknown"
print(line, file=sys.stderr)

elif (returnsignal == 9) or (returnsignal == 15):
status = "timeout"
Expand Down

0 comments on commit 186ec4e

Please sign in to comment.