mirror of
https://github.com/odin-lang/Odin.git
synced 2026-01-01 19:02:13 +00:00
9 lines
160 B
Odin
9 lines
160 B
Odin
//+private
|
|
//+build !windows
|
|
package testing
|
|
|
|
run_internal_test :: proc(t: ^T, it: Internal_Test) {
|
|
// TODO(bill): Catch panics on other platforms
|
|
it.p(t);
|
|
}
|