From 3f987ae61d4c52ddc364abf6472227d7821c9e43 Mon Sep 17 00:00:00 2001 From: "Bryan C. Mills" Date: Mon, 24 Apr 2023 10:09:17 -0400 Subject: [PATCH] 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 --- src/internal/testenv/exec.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }