We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4ae347 commit ad442f5Copy full SHA for ad442f5
scripts/run-ios-ui-tests.sh
@@ -201,6 +201,10 @@ auto_select_destination() {
201
done
202
[ "$platform" != "iOS Simulator" ] && continue
203
[ -z "$id" ] && continue
204
+ # Skip placeholder device IDs
205
+ case "$id" in
206
+ *Placeholder*|*placeholder*) continue ;;
207
+ esac
208
priority=0
209
case "$(printf '%s' "$name" | tr 'A-Z' 'a-z')" in
210
*iphone*) priority=2 ;;
@@ -265,6 +269,10 @@ fallback_sim_destination() {
265
269
state="$(trim_whitespace "$state")"
266
270
[ -z "$name" ] && continue
267
271
272
273
274
275
268
276
277
lower_name="$(printf '%s' "$name" | tr 'A-Z' 'a-z')"
278
case "$lower_name" in
0 commit comments