runner_other.odin 160 B

12345678
  1. //+private
  2. //+build !windows
  3. package testing
  4. run_internal_test :: proc(t: ^T, it: Internal_Test) {
  5. // TODO(bill): Catch panics on other platforms
  6. it.p(t);
  7. }