Skip to content

Commit 605d5bf

Browse files
committed
go/gcimporter, go/types: skip nacl-arm for some tests
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]>
1 parent f9379e5 commit 605d5bf

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

go/gcimporter/gcimporter_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ func skipSpecialPlatforms(t *testing.T) {
2626
switch platform := runtime.GOOS + "-" + runtime.GOARCH; platform {
2727
case "nacl-amd64p32",
2828
"nacl-386",
29+
"nacl-arm",
2930
"darwin-arm",
3031
"darwin-arm64":
3132
t.Skipf("no compiled packages available for import on %s", platform)

go/types/api_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ func skipSpecialPlatforms(t *testing.T) {
2525
switch platform := runtime.GOOS + "-" + runtime.GOARCH; platform {
2626
case "nacl-amd64p32",
2727
"nacl-386",
28+
"nacl-arm",
2829
"darwin-arm",
2930
"darwin-arm64":
3031
t.Skipf("no compiled packages available for import on %s", platform)

0 commit comments

Comments
 (0)