diff options
| author | Yao Zhang <lunaria21@gmail.com> | 2015-09-10 11:33:48 -0400 |
|---|---|---|
| committer | Minux Ma <minux@golang.org> | 2015-11-12 04:51:42 +0000 |
| commit | fa61945cf21cce6d435ec69e8167400aa55bc108 (patch) | |
| tree | d6f5bb4c2ece7bbff48e7ebad6e6e324b57efe6d /src/runtime/debug | |
| parent | 7f762704e9319149540120a64ba7e90d8c7e50e2 (diff) | |
| download | go-fa61945cf21cce6d435ec69e8167400aa55bc108.tar.xz | |
runtime/debug: skip TestFreeOSMemory for mips64{,le}
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>
Diffstat (limited to 'src/runtime/debug')
| -rw-r--r-- | src/runtime/debug/garbage_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/debug/garbage_test.go b/src/runtime/debug/garbage_test.go index 3e3483d418..549d360bbf 100644 --- a/src/runtime/debug/garbage_test.go +++ b/src/runtime/debug/garbage_test.go @@ -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") } |
