Skip to content

Commit

Permalink
[release-branch.go1.22] cmd/go/testdata/script: clear path in gotoolc…
Browse files Browse the repository at this point in the history
…hain_issue66175

The gotoolchain_issue66175 script test would fail if a binary named
go1.21 or go1.22 was present in the system PATH. Clear the path at the
beginning of the test to make it independent of the system path.

For #67277
Fixes #67311

Change-Id: I6d9133aee5b20ab116e07b659e8ecf3eb8add4ed
Reviewed-on: https://go-review.googlesource.com/c/go/+/584258
LUCI-TryBot-Result: Go LUCI <[email protected]>
Reviewed-by: Cherry Mui <[email protected]>
(cherry picked from commit a0a6026)
Reviewed-on: https://go-review.googlesource.com/c/go/+/584955
Auto-Submit: Dmitri Shuralyov <[email protected]>
  • Loading branch information
matloob authored and gopherbot committed May 13, 2024
1 parent dc8976d commit d4a81ec
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/cmd/go/testdata/script/gotoolchain_issue66175.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
env TESTGO_VERSION=go1.14

# Clear the path so this test doesn't fail if the system running it\
# has a binary named go1.21 or go1.22 on its path.
[GOOS:plan9] env path=
[!GOOS:plan9] env PATH=

# check for invalid toolchain in go.mod
go mod init m
go mod edit -go=1.14 -toolchain=go1.22
Expand Down

0 comments on commit d4a81ec

Please sign in to comment.