@@ -266,6 +266,9 @@ public void UI_InputModuleHasDefaultActions()
266
266
// of to the previous click).
267
267
[ UnityTest ]
268
268
[ Category ( "UI" ) ]
269
+ #if UNITY_IOS || UNITY_TVOS
270
+ [ Ignore ( "Failing on iOS https://jira.unity3d.com/browse/ISX-448" ) ]
271
+ #endif
269
272
// All pointer input goes through a single code path. Goes for Pointer-derived devices as well as for TrackedDevice input but
270
273
// also any other input that can deliver point and click functionality.
271
274
//
@@ -1179,6 +1182,9 @@ public IEnumerator UI_CanReceivePointerExitsWhenChangingUIStateWithoutMovingPoin
1179
1182
[ TestCase ( UIPointerBehavior . SingleUnifiedPointer , ExpectedResult = - 1 ) ]
1180
1183
[ TestCase ( UIPointerBehavior . AllPointersAsIs , ExpectedResult = - 1 ) ]
1181
1184
[ TestCase ( UIPointerBehavior . SingleMouseOrPenButMultiTouchAndTrack , ExpectedResult = - 1 ) ]
1185
+ #if UNITY_IOS || UNITY_TVOS
1186
+ [ Ignore ( "Failing on iOS https://jira.unity3d.com/browse/ISX-448" ) ]
1187
+ #endif
1182
1188
public IEnumerator UI_CanDriveUIFromMultiplePointers ( UIPointerBehavior pointerBehavior )
1183
1189
{
1184
1190
InputSystem . RegisterLayout ( kTrackedDeviceWithButton ) ;
@@ -1720,6 +1726,9 @@ public IEnumerator UI_CanUseTouchSimulationWithUI()
1720
1726
}
1721
1727
}
1722
1728
1729
+ #if UNITY_IOS || UNITY_TVOS
1730
+ [ Ignore ( "Failing on iOS https://jira.unity3d.com/browse/ISX-448" ) ]
1731
+ #endif
1723
1732
[ UnityTest ]
1724
1733
[ Category ( "UI" ) ]
1725
1734
public IEnumerator UI_CanDriveUIFromMultipleTrackedDevices ( )
@@ -2179,6 +2188,9 @@ public IEnumerator UI_CallingIsPointerOverGameObject_FromActionCallback_ResultsI
2179
2188
yield return null ;
2180
2189
}
2181
2190
2191
+ #if UNITY_IOS || UNITY_TVOS
2192
+ [ Ignore ( "Failing on iOS https://jira.unity3d.com/browse/ISX-448" ) ]
2193
+ #endif
2182
2194
[ UnityTest ]
2183
2195
[ Category ( "UI" ) ]
2184
2196
public IEnumerator UI_CanGetRaycastResultMatchingEvent ( )
@@ -2239,6 +2251,9 @@ public IEnumerator UI_CanGetRaycastResultMatchingEvent()
2239
2251
Assert . That ( raycastResult . isValid , Is . False ) ;
2240
2252
}
2241
2253
2254
+ #if UNITY_IOS || UNITY_TVOS
2255
+ [ Ignore ( "Failing on iOS https://jira.unity3d.com/browse/ISX-448" ) ]
2256
+ #endif
2242
2257
[ UnityTest ]
2243
2258
[ Category ( "UI" ) ]
2244
2259
public IEnumerator UI_XRTrackingOriginTransformModifiesTrackedPointers ( )
0 commit comments