Commit 709dbd28 authored by Jay Conrod's avatar Jay Conrod

cmd/go: fix list_constraints test on non-amd64 platforms

Test set GOOS to linux and darwin without setting GOARCH. darwin is
not a valid GOOS for all architectures we test.

Fixes #35976

Change-Id: I4da2ebcbf9ad52e07bcc1632b48fcfdbc49b1289
Reviewed-on: https://go-review.googlesource.com/c/go/+/209900
Run-TryBot: Jay Conrod <jayconrod@google.com>
Reviewed-by: default avatarCherry Zhang <cherryyz@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
parent ae2e2446
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
# Linux and cgo files should be included when building in that configuration. # Linux and cgo files should be included when building in that configuration.
env GOOS=linux env GOOS=linux
env GOARCH=amd64
env CGO_ENABLED=1 env CGO_ENABLED=1
go list -f '{{range .GoFiles}}{{.}} {{end}}' go list -f '{{range .GoFiles}}{{.}} {{end}}'
stdout '^cgotag.go empty.go suffix_linux.go tag.go $' stdout '^cgotag.go empty.go suffix_linux.go tag.go $'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment