diff options
Diffstat (limited to 'libgo/go/runtime/debug/garbage_test.go')
-rw-r--r-- | libgo/go/runtime/debug/garbage_test.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libgo/go/runtime/debug/garbage_test.go b/libgo/go/runtime/debug/garbage_test.go index 149bafc6f3c..13e1845098e 100644 --- a/libgo/go/runtime/debug/garbage_test.go +++ b/libgo/go/runtime/debug/garbage_test.go @@ -75,6 +75,10 @@ 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" || + runtime.GOOS == "nacl" { + t.Skip("issue 9993; scavenger temporarily disabled on systems with physical pages larger than logical pages") + } var ms1, ms2 runtime.MemStats if big == nil { |