1
0
mirror of https://github.com/golang/go synced 2024-09-29 03:34:33 -06:00

internal/testenv: actually try to exec on ios and wasm

Due to a stray edit in CL 486275, the assignment to tryExecOk
in tryExec on ios would be immediately overwritten back to false.
This change fixes the stray edit.

Change-Id: I4f45fbf130dc912305e5f453b0d1a622ba199ad4
Reviewed-on: https://go-review.googlesource.com/c/go/+/488076
Reviewed-by: Ian Lance Taylor <iant@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Auto-Submit: Bryan Mills <bcmills@google.com>
Run-TryBot: Bryan Mills <bcmills@google.com>
This commit is contained in:
Bryan C. Mills 2023-04-24 10:09:17 -04:00 committed by Gopher Robot
parent a8af76284d
commit 3f987ae61d

View File

@ -74,7 +74,7 @@ func init() {
cmd := exec.Command(exe, "-test.list=^$")
cmd.Env = origEnv
if err := cmd.Run(); err == nil {
tryExecOk = true
return true
}
return false
}