Skip to content

Commit

Permalink
Merge pull request #1116 from blishko/hornix-update
Browse files Browse the repository at this point in the history
SV-COMP 2025: Update the processing of output of Hornix
  • Loading branch information
PhilippWendler authored Nov 21, 2024
2 parents 6f964ac + 1bfc493 commit b4ac71f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion benchexec/tools/hornix.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ def determine_result(self, run):
return result.RESULT_TRUE_PROP
elif "unsat" == line:
return result.RESULT_FALSE_REACH
elif "unknown" == line:
elif "unknown" == line or line.startswith("UNKNOWN"):
return result.RESULT_UNKNOWN
elif "timeout" == line:
return result.RESULT_TIMEOUT
else:
return result.RESULT_ERROR

0 comments on commit b4ac71f

Please sign in to comment.