]> Cypherpunks repositories - gostls13.git/commitdiff
runtime/debug: skip TestFreeOSMemory for mips64{,le}
authorYao Zhang <lunaria21@gmail.com>
Thu, 10 Sep 2015 15:33:48 +0000 (11:33 -0400)
committerMinux Ma <minux@golang.org>
Thu, 12 Nov 2015 04:51:42 +0000 (04:51 +0000)
Change-Id: I419f3b8bf1bddffd4a775b0cd7b98f0239fe19cb
Reviewed-on: https://go-review.googlesource.com/14458
Reviewed-by: Minux Ma <minux@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
src/runtime/debug/garbage_test.go

index 3e3483d41804097b85a880caa0a4c83c5f92d4ca..549d360bbf7bfb1639049a83b46cc8f623ceeb9e 100644 (file)
@@ -88,7 +88,7 @@ func TestReadGCStats(t *testing.T) {
 var big = make([]byte, 1<<20)
 
 func TestFreeOSMemory(t *testing.T) {
-       if runtime.GOARCH == "arm64" || runtime.GOARCH == "ppc64" || runtime.GOARCH == "ppc64le" ||
+       if runtime.GOARCH == "arm64" || runtime.GOARCH == "ppc64" || runtime.GOARCH == "ppc64le" || runtime.GOARCH == "mips64" || runtime.GOARCH == "mips64le" ||
                runtime.GOOS == "nacl" {
                t.Skip("issue 9993; scavenger temporarily disabled on systems with physical pages larger than logical pages")
        }