aboutsummaryrefslogtreecommitdiff
path: root/core/testing/runner.odin
diff options
context:
space:
mode:
Diffstat (limited to 'core/testing/runner.odin')
-rw-r--r--core/testing/runner.odin9
1 files changed, 5 insertions, 4 deletions
diff --git a/core/testing/runner.odin b/core/testing/runner.odin
index 5b80d0cf8..190e10744 100644
--- a/core/testing/runner.odin
+++ b/core/testing/runner.odin
@@ -648,10 +648,11 @@ runner :: proc(internal_tests: []Internal_Test) -> bool {
failed_test_reason_map[test_index] = fmt.aprintf("Signal caught: %v", reason, allocator = shared_log_allocator)
pkg_log.fatalf("Caught signal to stop test #%i %s.%s for: %v.", test_index, it.pkg, it.name, reason)
- when FANCY_OUTPUT {
- signals_were_raised = true
- bypass_progress_overwrite = true
- }
+ }
+
+ when FANCY_OUTPUT {
+ bypass_progress_overwrite = true
+ signals_were_raised = true
}
total_failure_count += 1