@@ -3649,6 +3649,58 @@ ios_ui_test(
36493649 ],
36503650)
36513651
3652+ ios_ui_test (
3653+ name = "simple_pointer_authentication_ui_test" ,
3654+ families = [
3655+ "iphone" ,
3656+ ],
3657+ infoplists = [
3658+ "//test/starlark_tests/resources:Info.plist" ,
3659+ ],
3660+ minimum_os_version = common .min_os_ios .baseline ,
3661+ provisioning_profile = "//test/testdata/provisioning:integration_testing_ios.mobileprovision" ,
3662+ runner = "//test/starlark_tests/targets_under_test/apple:dummy_test_runner" ,
3663+ secure_features = [
3664+ "apple.xcode_26_minimum_opt_in" ,
3665+ "pointer_authentication" ,
3666+ ],
3667+ tags = common .fixture_tags ,
3668+ test_host = ":app" ,
3669+ deps = [
3670+ "//test/starlark_tests/resources:objc_test_lib" ,
3671+ ],
3672+ )
3673+
3674+ ios_ui_test (
3675+ name = "simple_enhanced_security_ui_test_with_rule_level_disabled_features" ,
3676+ families = [
3677+ "iphone" ,
3678+ ],
3679+ features = [
3680+ "-apple.xcode_26_minimum_opt_in" ,
3681+ "-trivial_auto_var_init" ,
3682+ ],
3683+ infoplists = [
3684+ "//test/starlark_tests/resources:Info.plist" ,
3685+ ],
3686+ minimum_os_version = common .min_os_ios .baseline ,
3687+ provisioning_profile = "//test/testdata/provisioning:integration_testing_ios.mobileprovision" ,
3688+ resources = [
3689+ "//test/starlark_tests/resources:example_filegroup" ,
3690+ "//test/starlark_tests/resources:resource_bundle" ,
3691+ ],
3692+ runner = "//test/starlark_tests/targets_under_test/apple:dummy_test_runner" ,
3693+ secure_features = [
3694+ "apple.xcode_26_minimum_opt_in" ,
3695+ "trivial_auto_var_init" ,
3696+ ],
3697+ tags = common .fixture_tags ,
3698+ test_host = ":app" ,
3699+ deps = [
3700+ "//test/starlark_tests/resources:objc_test_lib" ,
3701+ ],
3702+ )
3703+
36523704xctrunner (
36533705 name = "ui_test_xctrunner_app" ,
36543706 testonly = True ,
@@ -3929,6 +3981,62 @@ ios_unit_test(
39293981 ],
39303982)
39313983
3984+ ios_unit_test (
3985+ name = "simple_pointer_authentication_unit_test" ,
3986+ families = [
3987+ "iphone" ,
3988+ ],
3989+ infoplists = [
3990+ "//test/starlark_tests/resources:Info.plist" ,
3991+ ],
3992+ minimum_os_version = common .min_os_ios .baseline ,
3993+ provisioning_profile = "//test/testdata/provisioning:integration_testing_ios.mobileprovision" ,
3994+ resources = [
3995+ "//test/starlark_tests/resources:example_filegroup" ,
3996+ "//test/starlark_tests/resources:resource_bundle" ,
3997+ ],
3998+ runner = "//test/starlark_tests/targets_under_test/apple:dummy_test_runner" ,
3999+ secure_features = [
4000+ "apple.xcode_26_minimum_opt_in" ,
4001+ "pointer_authentication" ,
4002+ ],
4003+ tags = common .fixture_tags ,
4004+ test_host = ":app" ,
4005+ deps = [
4006+ "//test/starlark_tests/resources:objc_test_lib" ,
4007+ ],
4008+ )
4009+
4010+ ios_unit_test (
4011+ name = "simple_enhanced_security_unit_test_with_rule_level_disabled_features" ,
4012+ families = [
4013+ "iphone" ,
4014+ ],
4015+ features = [
4016+ "-apple.xcode_26_minimum_opt_in" ,
4017+ "-trivial_auto_var_init" ,
4018+ ],
4019+ infoplists = [
4020+ "//test/starlark_tests/resources:Info.plist" ,
4021+ ],
4022+ minimum_os_version = common .min_os_ios .baseline ,
4023+ provisioning_profile = "//test/testdata/provisioning:integration_testing_ios.mobileprovision" ,
4024+ resources = [
4025+ "//test/starlark_tests/resources:example_filegroup" ,
4026+ "//test/starlark_tests/resources:resource_bundle" ,
4027+ ],
4028+ runner = "//test/starlark_tests/targets_under_test/apple:dummy_test_runner" ,
4029+ secure_features = [
4030+ "apple.xcode_26_minimum_opt_in" ,
4031+ "trivial_auto_var_init" ,
4032+ ],
4033+ tags = common .fixture_tags ,
4034+ test_host = ":app" ,
4035+ deps = [
4036+ "//test/starlark_tests/resources:objc_test_lib" ,
4037+ ],
4038+ )
4039+
39324040# ---------------------------------------------------------------------------------------
39334041# Targets for the app/test resource deduping test.
39344042
0 commit comments