]> Cypherpunks repositories - gostls13.git/commitdiff
syscall: use MustHaveExec in TestExec
authorIan Lance Taylor <iant@golang.org>
Thu, 15 Oct 2020 21:19:10 +0000 (14:19 -0700)
committerIan Lance Taylor <iant@golang.org>
Sat, 17 Oct 2020 00:32:32 +0000 (00:32 +0000)
For #41702

Change-Id: Ib2b15e52aa1fef2f5e644b316c726150252fa9f8
Reviewed-on: https://go-review.googlesource.com/c/go/+/262738
Trust: Ian Lance Taylor <iant@golang.org>
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Cherry Zhang <cherryyz@google.com>
src/syscall/exec_unix_test.go

index d005bba610ea7d213c7963d61dd59ce8cc5f29a3..4431f7fc90095dacad1c2cec5fd36886b9318891 100644 (file)
@@ -247,6 +247,7 @@ func TestInvalidExec(t *testing.T) {
 
 // TestExec is for issue #41702.
 func TestExec(t *testing.T) {
+       testenv.MustHaveExec(t)
        cmd := exec.Command(os.Args[0], "-test.run=TestExecHelper")
        cmd.Env = append(os.Environ(), "GO_WANT_HELPER_PROCESS=2")
        o, err := cmd.CombinedOutput()