mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-29 17:34:34 +00:00
14 lines
263 B
Odin
14 lines
263 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) {
|
|
|
|
} |