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.
This commit is contained in:
Feoramund
2024-05-27 20:05:43 -04:00
parent d03024088a
commit 87ea4a2652

View File

@@ -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
}
*/