Skip to content

Commit

Permalink
go/gcimporter, go/types: skip nacl-arm for some tests
Browse files Browse the repository at this point in the history
Backport of https://go-review.googlesource.com/9674 .

Change-Id: Ie86bea98e910616b2d6a49387b1aed973d4f1c66
Reviewed-on: https://go-review.googlesource.com/11126
Reviewed-by: Alan Donovan <[email protected]>
  • Loading branch information
griesemer committed Jun 15, 2015
1 parent f9379e5 commit 605d5bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions go/gcimporter/gcimporter_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,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)
Expand Down
1 change: 1 addition & 0 deletions go/types/api_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 605d5bf

Please sign in to comment.