1
0
mirror of https://github.com/golang/go synced 2024-11-18 13:04:46 -07:00

go/internal/gcimporter, go/types: also skip tests on nacl/arm

Change-Id: I3e839587626832da069d95a7d7389ea6bb2318da
Reviewed-on: https://go-review.googlesource.com/9674
Reviewed-by: Ian Lance Taylor <iant@golang.org>
This commit is contained in:
Shenghou Ma 2015-05-03 01:29:52 -04:00 committed by Minux Ma
parent 669d3da000
commit 5ffdf53b27
2 changed files with 2 additions and 0 deletions

View File

@ -25,6 +25,7 @@ func skipSpecialPlatforms(t *testing.T) {
switch platform := runtime.GOOS + "-" + runtime.GOARCH; platform {
case "nacl-amd64p32",
"nacl-386",
"nacl-arm",
"darwin-arm",
"darwin-arm64":
t.Skipf("no compiled packages available for import on %s", platform)

View File

@ -25,6 +25,7 @@ func skipSpecialPlatforms(t *testing.T) {
switch platform := runtime.GOOS + "-" + runtime.GOARCH; platform {
case "nacl-amd64p32",
"nacl-386",
"nacl-arm",
"darwin-arm",
"darwin-arm64":
t.Skipf("no compiled packages available for import on %s", platform)