blob: f3271d2090a3f02d46b70338ea0b76823036ecef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//+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) {
}
|