Disable the test properly on nacl systems, tested on nacl/amd64p32.
Change-Id: Iffe210be4f9c426bfc47f2dd3a8f0c6b5a398cc3
Reviewed-on: https://go-review.googlesource.com/6093
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
var big = make([]byte, 1<<20)
func TestFreeOSMemory(t *testing.T) {
- switch runtime.GOARCH {
- case "ppc64", "ppc64le", "nacl":
+ if runtime.GOARCH == "ppc64" || runtime.GOARCH == "ppc64le" || runtime.GOOS == "nacl" {
t.Skip("issue 9993; scavenger temporarily disabled on systems with 64k pages")
}
var ms1, ms2 runtime.MemStats