diff options
| author | Feoramund <161657516+Feoramund@users.noreply.github.com> | 2024-05-27 20:05:43 -0400 |
|---|---|---|
| committer | Feoramund <161657516+Feoramund@users.noreply.github.com> | 2024-06-02 14:34:31 -0400 |
| commit | 87ea4a2652e99f44a286fe6328659fe7e6e5f7b9 (patch) | |
| tree | 83b18dcb175a6bc8f0809c2a9e4ab914f7516521 /core/testing | |
| parent | d03024088aec0238ed236dd02987f8f8e8734958 (diff) | |
Temporarily disable Windows-specific test runner
I do not have a Windows machine to test the refactored test runner, and
I am unsure if it would even run correctly on Windows without this
disabled.
Diffstat (limited to 'core/testing')
| -rw-r--r-- | core/testing/runner_windows.odin | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/core/testing/runner_windows.odin b/core/testing/runner_windows.odin index 15264355b..23dab4f31 100644 --- a/core/testing/runner_windows.odin +++ b/core/testing/runner_windows.odin @@ -2,6 +2,12 @@ //+build windows package testing +run_internal_test :: proc(t: ^T, it: Internal_Test) { + it.p(t) +} + +// Temporarily disabled during multi-threaded test runner refactor. +/* import win32 "core:sys/windows" import "base:runtime" import "base:intrinsics" @@ -233,3 +239,4 @@ run_internal_test :: proc(t: ^T, it: Internal_Test) { return } +*/ |