@@ -1035,6 +1035,60 @@ Found "com.bazel.app.example" which does not match previously defined "com.altba
10351035 tags = [name ],
10361036 )
10371037
1038+ archive_contents_test (
1039+ name = "{}_with_spaces_contents_test" .format (name ),
1040+ build_type = "simulator" ,
1041+ target_under_test = "//test/starlark_tests/targets_under_test/ios:app minimal has several spaces" ,
1042+ contains = [
1043+ "$BUNDLE_ROOT/Info.plist" ,
1044+ "$BUNDLE_ROOT/PkgInfo" ,
1045+ "$BUNDLE_ROOT/app minimal has several spaces" ,
1046+ ],
1047+ tags = [name ],
1048+ )
1049+
1050+ archive_contents_test (
1051+ name = "{}_tree_artifact_with_spaces_contents_test" .format (name ),
1052+ build_type = "simulator" ,
1053+ target_under_test = "//test/starlark_tests/targets_under_test/ios:app minimal has several spaces" ,
1054+ build_settings = {
1055+ build_settings_labels .use_tree_artifacts_outputs : "True" ,
1056+ },
1057+ contains = [
1058+ "$BUNDLE_ROOT/Info.plist" ,
1059+ "$BUNDLE_ROOT/PkgInfo" ,
1060+ "$BUNDLE_ROOT/app minimal has several spaces" ,
1061+ ],
1062+ tags = [name ],
1063+ )
1064+
1065+ archive_contents_test (
1066+ name = "{}_bundle_name_with_spaces_contents_test" .format (name ),
1067+ build_type = "simulator" ,
1068+ target_under_test = "//test/starlark_tests/targets_under_test/ios:app_minimal_bundle_name_with_spaces" ,
1069+ contains = [
1070+ "$BUNDLE_ROOT/Info.plist" ,
1071+ "$BUNDLE_ROOT/PkgInfo" ,
1072+ "$BUNDLE_ROOT/app minimal bundle name has several spaces" ,
1073+ ],
1074+ tags = [name ],
1075+ )
1076+
1077+ archive_contents_test (
1078+ name = "{}_tree_artifact_bundle_name_with_spaces_contents_test" .format (name ),
1079+ build_type = "simulator" ,
1080+ target_under_test = "//test/starlark_tests/targets_under_test/ios:app_minimal_bundle_name_with_spaces" ,
1081+ build_settings = {
1082+ build_settings_labels .use_tree_artifacts_outputs : "True" ,
1083+ },
1084+ contains = [
1085+ "$BUNDLE_ROOT/Info.plist" ,
1086+ "$BUNDLE_ROOT/PkgInfo" ,
1087+ "$BUNDLE_ROOT/app minimal bundle name has several spaces" ,
1088+ ],
1089+ tags = [name ],
1090+ )
1091+
10381092 native .test_suite (
10391093 name = name ,
10401094 tags = [name ],
0 commit comments