runner_other.odin 263 B

1234567891011121314
  1. //+private
  2. //+build !windows
  3. package testing
  4. import "core:time"
  5. run_internal_test :: proc(t: ^T, it: Internal_Test) {
  6. // TODO(bill): Catch panics on other platforms
  7. it.p(t)
  8. }
  9. _fail_timeout :: proc(t: ^T, duration: time.Duration, loc := #caller_location) {
  10. }