Skip to content

Commit d8b67f1

Browse files
Merge pull request sosy-lab#1106 from hernanponcedeleon/no-data-race
Use result.RESULT_FALSE_DATARACE constant in dartagnan
2 parents be2d505 + e96ce80 commit d8b67f1

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

benchexec/tools/dartagnan.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ def determine_result(self, run):
4343
status = result.RESULT_FALSE_DEREF
4444
elif "user assertion" in failure_str:
4545
status = result.RESULT_FALSE_REACH
46+
elif "data race found" in failure_str:
47+
status = result.RESULT_FALSE_DATARACE
4648
else:
4749
status = result.RESULT_FALSE_PROP
4850
elif "PASS" in result_str:

0 commit comments

Comments
 (0)