diff options
-rw-r--r-- | runsc/specutils/namespace.go | 2 | ||||
-rw-r--r-- | test/runner/runner.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/runsc/specutils/namespace.go b/runsc/specutils/namespace.go index d8b9334c7..69d7ba5c4 100644 --- a/runsc/specutils/namespace.go +++ b/runsc/specutils/namespace.go @@ -275,7 +275,7 @@ func MaybeRunAsRoot() error { }() if err := cmd.Wait(); err != nil { if exit, ok := err.(*exec.ExitError); ok { - if ws, ok := exit.Sys().(unix.WaitStatus); ok { + if ws, ok := exit.Sys().(syscall.WaitStatus); ok { os.Exit(ws.ExitStatus()) } log.Warningf("No wait status provided, exiting with -1: %v", err) 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 |