Skip to content

Commit

Permalink
Reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
Misasasa committed Nov 22, 2024
1 parent 32c796d commit 172b5b3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion benchexec/tools/deagle.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,9 @@ def determine_result(self, run):
for line in run.output:
if "nodatarace.assertion." in line and "FAILURE" in line:
status = result.RESULT_FALSE_DATARACE
if ("alloc.assertion." in line or "pointer_dereference." in line) and "FAILURE" in line:
if (
"alloc.assertion." in line or "pointer_dereference." in line
) and "FAILURE" in line:
status = result.RESULT_FALSE_DEREF
if "memory-leak." in line and "FAILURE" in line:
status = result.RESULT_FALSE_MEMTRACK
Expand Down

0 comments on commit 172b5b3

Please sign in to comment.