Files
Odin/core/testing/runner_other.odin
T
2024-06-02 14:34:31 -04:00

9 lines
159 B
Odin

//+private
//+build !windows
package testing
run_internal_test :: proc(t: ^T, it: Internal_Test) {
// TODO(bill): Catch panics on other platforms
it.p(t)
}