Skip to content

Commit

Permalink
Merge pull request sosy-lab#1106 from hernanponcedeleon/no-data-race
Browse files Browse the repository at this point in the history
Use result.RESULT_FALSE_DATARACE constant in dartagnan
  • Loading branch information
PhilippWendler authored Nov 13, 2024
2 parents be2d505 + e96ce80 commit d8b67f1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions benchexec/tools/dartagnan.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ def determine_result(self, run):
status = result.RESULT_FALSE_DEREF
elif "user assertion" in failure_str:
status = result.RESULT_FALSE_REACH
elif "data race found" in failure_str:
status = result.RESULT_FALSE_DATARACE
else:
status = result.RESULT_FALSE_PROP
elif "PASS" in result_str:
Expand Down

0 comments on commit d8b67f1

Please sign in to comment.