aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2016-11-10 12:58:16 -0800
committerIan Lance Taylor <iant@golang.org>2016-11-10 22:45:44 +0000
commit41027cc460b8db8fe2c23fa6fb97eb1ddab44799 (patch)
tree9825757f8a3d0d0d9da621a519ae6873eed2c528
parentab0ae44e91efec4440828406ef1929488a8b1b06 (diff)
downloadgo-41027cc460b8db8fe2c23fa6fb97eb1ddab44799.tar.gz
go-41027cc460b8db8fe2c23fa6fb97eb1ddab44799.zip
cmd/go: remove "x" in TestImportMain
Interestingly, this only became a problem when CL 32850 marked TestImportMain as parallel. Before that, "x" was overwritten and remove in a later test, TestGoBuildOutput. The latter test is not marked as parallel, so now it is run first. It is rather fragile for two tests to compete over the same filename, but this change is correct regardless. Change-Id: I1db7929c0bc20a2fd0cc6a02999bef2dca9e0cc0 Reviewed-on: https://go-review.googlesource.com/33092 Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
-rw-r--r--src/cmd/go/go_test.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cmd/go/go_test.go b/src/cmd/go/go_test.go
index caa8598885..a5dc9a8ce8 100644
--- a/src/cmd/go/go_test.go
+++ b/src/cmd/go/go_test.go
@@ -2575,6 +2575,7 @@ func TestImportMain(t *testing.T) {
func TestFoo(t *testing.T) {}
`)
tg.setenv("GOPATH", tg.path("."))
+ tg.creatingTemp("x")
tg.run("build", "x")
tg.run("test", "x")