aboutsummaryrefslogtreecommitdiff
path: root/core/testing
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2021-05-01 22:58:13 +0100
committergingerBill <bill@gingerbill.org>2021-05-01 22:58:13 +0100
commit364e6c9573f35cb32be50cabb898ceb2afa57b88 (patch)
treeb6d9fc5bf85c703a445593d75fb877ccc6c53f71 /core/testing
parent52d38ae42b15311102719d25b6f285c43af701bb (diff)
Move comment
Diffstat (limited to 'core/testing')
-rw-r--r--core/testing/runner.odin1
-rw-r--r--core/testing/runner_other.odin1
2 files changed, 1 insertions, 1 deletions
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);
}