From e0e04814b40f1d4077d1cf6001395bd6a919b288 Mon Sep 17 00:00:00 2001 From: Fabricio Voznika Date: Tue, 9 Mar 2021 20:10:16 -0800 Subject: Fix invalid interface conversion in runner panic: interface conversion: interface {} is syscall.WaitStatus, not unix.WaitStatus goroutine 1 [running]: main.runTestCaseNative(0xc0001fc000, 0xe3, 0xc000119b60, 0x1, 0x1, 0x0, 0x0) test/runner/runner.go:185 +0xa94 main.main() test/runner/runner.go:118 +0x745 PiperOrigin-RevId: 361957796 --- test/runner/runner.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/runner/runner.go') diff --git a/test/runner/runner.go b/test/runner/runner.go index 009de5d0c..a8a134fe2 100644 --- a/test/runner/runner.go +++ b/test/runner/runner.go @@ -182,7 +182,7 @@ func runTestCaseNative(testBin string, args []string) error { } if err := cmd.Run(); err != nil { - ws := err.(*exec.ExitError).Sys().(unix.WaitStatus) + ws := err.(*exec.ExitError).Sys().(syscall.WaitStatus) return fmt.Errorf("test exited with status %d, want 0", ws.ExitStatus()) } return nil -- cgit v1.2.3