aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/go/testdata/script/build_cache_gomips.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/go/testdata/script/build_cache_gomips.txt')
-rw-r--r--src/cmd/go/testdata/script/build_cache_gomips.txt37
1 files changed, 0 insertions, 37 deletions
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
index c77acc3f2f..0000000000
--- a/src/cmd/go/testdata/script/build_cache_gomips.txt
+++ /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
-}