[objc] Migrate interop remote test target to test runner (#30938)

Co-authored-by: dennycd <dennycd@google.com>
pull/30980/head
Jan Tattermusch 2 years ago committed by GitHub
parent b15097142a
commit 26707b3a18
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 17
      src/objective-c/tests/BUILD

@ -23,7 +23,6 @@ load(
"proto_library_objc_wrapper",
)
load("@build_bazel_rules_apple//apple:resources.bzl", "apple_resource_bundle")
load("@build_bazel_rules_apple//apple:ios.bzl", "ios_application", "ios_unit_test")
load("@build_bazel_rules_apple//apple:macos.bzl", "macos_unit_test")
load("@build_bazel_rules_apple//apple:tvos.bzl", "tvos_application", "tvos_unit_test")
@ -82,18 +81,6 @@ objc_library(
hdrs = glob(["Hosts/ios-host/*.h"]),
)
ios_application(
name = "ios-host",
bundle_id = "grpc.objc.tests.ios-host",
families = [
"iphone",
"ipad",
],
infoplists = ["Hosts/ios-host/Info.plist"],
minimum_os_version = "9.0",
deps = ["host-lib"],
)
tvos_application(
name = "tvos-host",
bundle_id = "grpc.objc.tests.tvos-host",
@ -211,10 +198,8 @@ grpc_objc_ios_unit_test(
],
)
ios_unit_test(
grpc_objc_ios_unit_test(
name = "InteropTestsRemote",
minimum_os_version = "9.0",
test_host = ":ios-host",
deps = [
":InteropTestsRemote-lib",
],

Loading…
Cancel
Save