We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents be2d505 + e96ce80 commit d8b67f1Copy full SHA for d8b67f1
benchexec/tools/dartagnan.py
@@ -43,6 +43,8 @@ def determine_result(self, run):
43
status = result.RESULT_FALSE_DEREF
44
elif "user assertion" in failure_str:
45
status = result.RESULT_FALSE_REACH
46
+ elif "data race found" in failure_str:
47
+ status = result.RESULT_FALSE_DATARACE
48
else:
49
status = result.RESULT_FALSE_PROP
50
elif "PASS" in result_str:
0 commit comments