libgo: Update to go1.6rc1.
Reviewed-on: https://go-review.googlesource.com/19200 From-SVN: r233110
This commit is contained in:
parent
b081ed4efc
commit
f98dd1a338
728 changed files with 43810 additions and 11912 deletions
|
@ -2,10 +2,11 @@
|
|||
// Use of this source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
package debug
|
||||
package debug_test
|
||||
|
||||
import (
|
||||
"runtime"
|
||||
. "runtime/debug"
|
||||
"testing"
|
||||
"time"
|
||||
)
|
||||
|
@ -75,7 +76,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")
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue