aboutsummaryrefslogtreecommitdiff
path: root/core/testing/runner_other.odin
blob: 0bd95e10ac8472550a89dbb63fd206ed5ba9f5ec (plain)
1
2
3
4
5
6
7
8
//+private
//+build !windows
package testing

run_internal_test :: proc(t: ^T, it: Internal_Test) {
	// TODO(bill): Catch panics on other platforms
	it.p(t);
}