diff options
| author | Feoramund <161657516+Feoramund@users.noreply.github.com> | 2024-06-01 07:42:23 -0400 |
|---|---|---|
| committer | Feoramund <161657516+Feoramund@users.noreply.github.com> | 2024-06-02 14:54:32 -0400 |
| commit | 4875f745c832119e634197a7eb6403a30f82a95b (patch) | |
| tree | 667a341aee3f65046bd2fc206ed258c2ea71aca2 /core/testing/runner.odin | |
| parent | ccdbd4b6cecfb5712edac97d9b22cc37c141a542 (diff) | |
Remove Windows test runner in favor of `libc` implementation
Diffstat (limited to 'core/testing/runner.odin')
| -rw-r--r-- | core/testing/runner.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/testing/runner.odin b/core/testing/runner.odin index 9027750da..8b156eb22 100644 --- a/core/testing/runner.odin +++ b/core/testing/runner.odin @@ -88,7 +88,7 @@ run_test_task :: proc(task: thread.Task) { free_all(context.temp_allocator) - run_internal_test(&data.t, data.it) + data.it.p(&data.t) end_t(&data.t) |