Files
Odin/core/testing/runner_other.odin
2021-10-11 15:28:25 +01:00

14 lines
264 B
Odin

//+private
//+build !windows
package testing
import "core:time"
run_internal_test :: proc(t: ^T, it: Internal_Test) {
// TODO(bill): Catch panics on other platforms
it.p(t);
}
_fail_timeout :: proc(t: ^T, duration: time.Duration, loc := #caller_location) {
}