mirror of
https://github.com/golang/go
synced 2024-11-18 18:04:46 -07:00
go/analysis/analysistest: unset GO111MODULE and GOPROXY
CL 139320 unset these env vars for the whole process in two tests, but the correct fix is to unset them for subprocesses forked by go/packages. Change-Id: I35e3ab9e424b00326e9e813e4daf0ae92ec36e26 Reviewed-on: https://go-review.googlesource.com/c/139477 Reviewed-by: Bryan C. Mills <bcmills@google.com> Run-TryBot: Bryan C. Mills <bcmills@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org>
This commit is contained in:
parent
1f2a8f46bd
commit
211dcd1cef
@ -128,7 +128,7 @@ func loadPackage(dir, pkgpath string) (*packages.Package, error) {
|
||||
Mode: packages.LoadAllSyntax,
|
||||
Dir: dir,
|
||||
Tests: true,
|
||||
Env: append(os.Environ(), "GOPATH="+dir),
|
||||
Env: append(os.Environ(), "GOPATH="+dir, "GO111MODULE=off", "GOPROXY=off"),
|
||||
}
|
||||
pkgs, err := packages.Load(cfg, pkgpath)
|
||||
if err != nil {
|
||||
|
@ -1,26 +1,12 @@
|
||||
package findcall_test
|
||||
|
||||
import (
|
||||
"log"
|
||||
"os"
|
||||
"testing"
|
||||
|
||||
"golang.org/x/tools/go/analysis/analysistest"
|
||||
"golang.org/x/tools/go/analysis/passes/findcall"
|
||||
)
|
||||
|
||||
func init() {
|
||||
// This test currently requires GOPATH mode.
|
||||
// Explicitly disabling module mode should suffix, but
|
||||
// we'll also turn off GOPROXY just for good measure.
|
||||
if err := os.Setenv("GO111MODULE", "off"); err != nil {
|
||||
log.Fatal(err)
|
||||
}
|
||||
if err := os.Setenv("GOPROXY", "off"); err != nil {
|
||||
log.Fatal(err)
|
||||
}
|
||||
}
|
||||
|
||||
// TestFromStringLiterals demonstrates how to test an analysis using
|
||||
// a table of string literals for each test case.
|
||||
//
|
||||
|
@ -1,26 +1,12 @@
|
||||
package pkgfact_test
|
||||
|
||||
import (
|
||||
"log"
|
||||
"os"
|
||||
"testing"
|
||||
|
||||
"golang.org/x/tools/go/analysis/analysistest"
|
||||
"golang.org/x/tools/go/analysis/passes/pkgfact"
|
||||
)
|
||||
|
||||
func init() {
|
||||
// This test currently requires GOPATH mode.
|
||||
// Explicitly disabling module mode should suffix, but
|
||||
// we'll also turn off GOPROXY just for good measure.
|
||||
if err := os.Setenv("GO111MODULE", "off"); err != nil {
|
||||
log.Fatal(err)
|
||||
}
|
||||
if err := os.Setenv("GOPROXY", "off"); err != nil {
|
||||
log.Fatal(err)
|
||||
}
|
||||
}
|
||||
|
||||
func Test(t *testing.T) {
|
||||
testdata := analysistest.TestData()
|
||||
analysistest.Run(t, testdata, pkgfact.Analyzer,
|
||||
|
Loading…
Reference in New Issue
Block a user