diff --git a/core/testing/runner.odin b/core/testing/runner.odin index 1552cbc12..e3286988c 100644 --- a/core/testing/runner.odin +++ b/core/testing/runner.odin @@ -54,7 +54,6 @@ runner :: proc(internal_tests: []Internal_Test) -> bool { logf(t, "[Test: %s]", it.name); - // TODO(bill): Catch panics run_internal_test(t, it); if failed(t) { diff --git a/core/testing/runner_other.odin b/core/testing/runner_other.odin index 84d830512..0bd95e10a 100644 --- a/core/testing/runner_other.odin +++ b/core/testing/runner_other.odin @@ -3,5 +3,6 @@ package testing run_internal_test :: proc(t: ^T, it: Internal_Test) { + // TODO(bill): Catch panics on other platforms it.p(t); }