Skip to content

Commit

Permalink
adjust output type
Browse files Browse the repository at this point in the history
  • Loading branch information
passengerZ committed Nov 6, 2023
1 parent 783112c commit bab3444
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions benchexec/tools/fdse.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,12 @@ def name(self):
return "FDSE"

def determine_result(self, run):
status = result.RESULT_UNKNOWN
status = result.RESULT_ERROR

if run.output.any_line_contains("Done : End analysis"):
status = result.RESULT_DONE
for line in run.output:
if "Done : End analysis" in line:
status = result.RESULT_DONE
elif "HaltTimer invoked!!!" in line:
status = result.RESULT_TIMEOUT

return status

0 comments on commit bab3444

Please sign in to comment.