2
0
Эх сурвалжийг харах

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.
Feoramund 1 жил өмнө
parent
commit
87ea4a2652

+ 7 - 0
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
 }
+*/