1test: enable some tests on android/arm64. 2 3--- test/chanlinear.go 4+++ test/chanlinear.go 5@@ -1,9 +1,9 @@ 6-// +build darwin linux 7+// +build darwin linux android 8 // run 9 10 // Copyright 2014 The Go Authors. All rights reserved. 11 // Use of this source code is governed by a BSD-style 12 // license that can be found in the LICENSE file. 13 14 // Test that dequeueing from a pending channel doesn't 15 // take linear time. 16--- test/fixedbugs/bug385_64.go 17+++ test/fixedbugs/bug385_64.go 18@@ -1,9 +1,9 @@ 19-// +build amd64 20+// +build amd64 arm64 21 // errorcheck 22 23 // Copyright 2011 The Go Authors. All rights reserved. 24 // Use of this source code is governed by a BSD-style 25 // license that can be found in the LICENSE file. 26 27 // Issue 2444 28 // Issue 4666: issue with arrays of exactly 4GB. 29--- test/fixedbugs/issue10607.go 30+++ test/fixedbugs/issue10607.go 31@@ -1,9 +1,9 @@ 32-// +build linux,!ppc64 33+// +build linux,!ppc64 android 34 // run 35 36 // Copyright 2015 The Go Authors. All rights reserved. 37 // Use of this source code is governed by a BSD-style 38 // license that can be found in the LICENSE file. 39 40 // Test that a -B option is passed through when using both internal 41 // and external linking mode. 42--- test/maplinear.go 43+++ test/maplinear.go 44@@ -1,9 +1,9 @@ 45-// +build darwin linux 46+// +build darwin linux android 47 // run 48 49 // Copyright 2013 The Go Authors. All rights reserved. 50 // Use of this source code is governed by a BSD-style 51 // license that can be found in the LICENSE file. 52 53 // Test that maps don't go quadratic for NaNs and other values. 54 55--- test/recover4.go 56+++ test/recover4.go 57@@ -1,9 +1,9 @@ 58-// +build linux darwin 59+// +build linux android darwin 60 // run 61 62 // Copyright 2015 The Go Authors. All rights reserved. 63 // Use of this source code is governed by a BSD-style 64 // license that can be found in the LICENSE file. 65 66 // Test that if a slice access causes a fault, a deferred func 67 // sees the most recent value of the variables it accesses. 68