]> Cypherpunks repositories - gostls13.git/commitdiff
[release-branch.go1.10] cmd/go: remove test that does nothing in 1.10
authorIan Lance Taylor <iant@golang.org>
Thu, 1 Nov 2018 21:24:16 +0000 (14:24 -0700)
committerIan Lance Taylor <iant@golang.org>
Thu, 1 Nov 2018 21:47:17 +0000 (21:47 +0000)
1.10 has no cmd/go/testdata/script directory.

Change-Id: I8985d457e8d6d0c8aeff9c17375f3c872593ab92
Reviewed-on: https://go-review.googlesource.com/c/146781
Run-TryBot: Ian Lance Taylor <iant@golang.org>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>

src/cmd/go/testdata/script/build_cache_gomips.txt [deleted file]

diff --git a/src/cmd/go/testdata/script/build_cache_gomips.txt b/src/cmd/go/testdata/script/build_cache_gomips.txt
deleted file mode 100644 (file)
index c77acc3..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-# Set up fresh GOCACHE.
-env GOCACHE=$WORK/gocache
-mkdir $GOCACHE
-
-# Building for mipsle without setting GOMIPS will use floating point registers.
-env GOARCH=mipsle
-env GOOS=linux
-go build -gcflags=-S f.go
-stderr ADDD.F[0-9]+,.F[0-9]+,.F[0-9]+
-
-# Clean cache
-go clean -cache
-
-# Building with GOMIPS=softfloat will not use floating point registers
-env GOMIPS=softfloat
-go build -gcflags=-S f.go
-! stderr ADDD.F[0-9]+,.F[0-9]+,.F[0-9]+
-
-# Clean cache
-go clean -cache
-
-# Build without setting GOMIPS
-env GOMIPS=
-go build -gcflags=-S f.go
-stderr ADDD.F[0-9]+,.F[0-9]+,.F[0-9]+
-
-# Building with GOMIPS should still not use floating point registers.
-env GOMIPS=softfloat
-go build -gcflags=-S f.go
-! stderr ADDD.F[0-9]+,.F[0-9]+,.F[0-9]+
-
--- f.go --
-package f
-
-func F(x float64) float64 {
-     return x + x
-}