diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/runner/runner.go | 2 |
1 files changed, 1 insertions, 1 deletions
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 |