From 364e6c9573f35cb32be50cabb898ceb2afa57b88 Mon Sep 17 00:00:00 2001 From: gingerBill Date: Sat, 1 May 2021 22:58:13 +0100 Subject: [PATCH] Move comment --- core/testing/runner.odin | 1 - core/testing/runner_other.odin | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) 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); }