mirror of
https://github.com/golang/go
synced 2024-11-06 01:46:12 -07:00
9c2b481b57
'go tool' sets environment variables, including the GOAMD64 value from the user's go.env file. 'go tool dist test' then rebuilds and reinstalls the toolchain and standard library based on those variables. It should not; instead, it should test exactly the configuration installed by the make scripts. Fixes #54084. Change-Id: I7cc8a21cc1d8331e06d7b7c55b14d170f8e2faab Reviewed-on: https://go-review.googlesource.com/c/go/+/420055 Run-TryBot: Bryan Mills <bcmills@google.com> Auto-Submit: Bryan Mills <bcmills@google.com> Reviewed-by: Ian Lance Taylor <iant@google.com>
18 lines
406 B
Bash
Executable File
18 lines
406 B
Bash
Executable File
#!/bin/rc -e
|
|
# Copyright 2012 The Go Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style
|
|
# license that can be found in the LICENSE file.
|
|
|
|
rfork e
|
|
|
|
if(! test -f ../bin/go){
|
|
echo 'run.rc must be run from $GOROOT/src after installing cmd/go' >[1=2]
|
|
exit wrongdir
|
|
}
|
|
|
|
GOENV=off
|
|
eval `{../bin/go tool dist env}
|
|
|
|
GOPATH=/nonexist-gopath
|
|
exec ../bin/go tool dist test -rebuild $*
|