From 93619952ba7f31652358bff518518889daa7c097 Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Thu, 16 Jan 2020 03:13:58 +0900 Subject: [PATCH] cmd/gomobile: enable the test for gomobile-build on iOS As golang/go#32963 has been fixed, gomobile-build test on iOS now works. Updates golang/go#32963 Change-Id: I96add914d1f97de6506f26e4ae0c07e8c884cb6a Reviewed-on: https://go-review.googlesource.com/c/mobile/+/214957 Run-TryBot: Hajime Hoshi TryBot-Result: Go Bot Trust: Hajime Hoshi Reviewed-by: Hyang-Ah Hana Kim --- cmd/gomobile/build_test.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/cmd/gomobile/build_test.go b/cmd/gomobile/build_test.go index 501175c..7a55603 100644 --- a/cmd/gomobile/build_test.go +++ b/cmd/gomobile/build_test.go @@ -208,10 +208,6 @@ func TestBuildWithGoModules(t *testing.T) { for _, target := range []string{"android", "ios"} { t.Run(target, func(t *testing.T) { - if target == "ios" { - t.Skip("gomobile-build doesn't work for iOS. see https://golang.org/issue/32963") - } - switch target { case "android": androidHome := os.Getenv("ANDROID_HOME")