blob: 3978a3c833521bd77dc83225de1ce6d7c1166d60 (
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) {
}
|