Skip to content

Commit

Permalink
Fix --debug crashes, broken in recent commit
Browse files Browse the repository at this point in the history
Got the negation wrong
  • Loading branch information
cgay committed Nov 4, 2023
1 parent c52441d commit 2c1e5d2
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions command-line.dylan
Original file line number Diff line number Diff line change
Expand Up @@ -217,9 +217,7 @@ define function run-test-application
exit-application(err.exit-status);
exception (error :: <error>,
test: method (cond)
test-runner
& (runner-debug(test-runner) == $debug-crashes
| runner-debug(test-runner) == $debug-all)
test-runner & (runner-debug(test-runner) == $debug-none)
end)
format(*standard-error*, "Error: %s", error);
exit-application(1);
Expand Down

0 comments on commit 2c1e5d2

Please sign in to comment.