aboutsummaryrefslogtreecommitdiff
path: root/core/testing
diff options
context:
space:
mode:
authorFeoramund <161657516+Feoramund@users.noreply.github.com>2024-05-27 20:05:43 -0400
committerFeoramund <161657516+Feoramund@users.noreply.github.com>2024-06-02 14:34:31 -0400
commit87ea4a2652e99f44a286fe6328659fe7e6e5f7b9 (patch)
tree83b18dcb175a6bc8f0809c2a9e4ab914f7516521 /core/testing
parentd03024088aec0238ed236dd02987f8f8e8734958 (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.odin7
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
}
+*/