From: Bryan C. Mills Date: Mon, 24 Apr 2023 14:09:17 +0000 (-0400) Subject: internal/testenv: actually try to exec on ios and wasm X-Git-Tag: go1.21rc1~785 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=3f987ae61d4c52ddc364abf6472227d7821c9e43;p=gostls13.git 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 TryBot-Result: Gopher Robot Auto-Submit: Bryan Mills Run-TryBot: Bryan Mills --- diff --git a/src/internal/testenv/exec.go b/src/internal/testenv/exec.go index 948e0f29f8..882791ddca 100644 --- a/src/internal/testenv/exec.go +++ b/src/internal/testenv/exec.go @@ -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 }