Skip to content

Commit 3342f7e

Browse files
committed
Revert "CHANGE: reenable UI tests on IOS"
This reverts commit 63a5850.
1 parent 63a5850 commit 3342f7e

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

Assets/Tests/InputSystem/Plugins/UITests.cs

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -266,6 +266,9 @@ public void UI_InputModuleHasDefaultActions()
266266
// of to the previous click).
267267
[UnityTest]
268268
[Category("UI")]
269+
#if UNITY_IOS || UNITY_TVOS
270+
[Ignore("Failing on iOS https://jira.unity3d.com/browse/ISX-448")]
271+
#endif
269272
// All pointer input goes through a single code path. Goes for Pointer-derived devices as well as for TrackedDevice input but
270273
// also any other input that can deliver point and click functionality.
271274
//
@@ -1179,6 +1182,9 @@ public IEnumerator UI_CanReceivePointerExitsWhenChangingUIStateWithoutMovingPoin
11791182
[TestCase(UIPointerBehavior.SingleUnifiedPointer, ExpectedResult = -1)]
11801183
[TestCase(UIPointerBehavior.AllPointersAsIs, ExpectedResult = -1)]
11811184
[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
11821188
public IEnumerator UI_CanDriveUIFromMultiplePointers(UIPointerBehavior pointerBehavior)
11831189
{
11841190
InputSystem.RegisterLayout(kTrackedDeviceWithButton);
@@ -1720,6 +1726,9 @@ public IEnumerator UI_CanUseTouchSimulationWithUI()
17201726
}
17211727
}
17221728

1729+
#if UNITY_IOS || UNITY_TVOS
1730+
[Ignore("Failing on iOS https://jira.unity3d.com/browse/ISX-448")]
1731+
#endif
17231732
[UnityTest]
17241733
[Category("UI")]
17251734
public IEnumerator UI_CanDriveUIFromMultipleTrackedDevices()
@@ -2179,6 +2188,9 @@ public IEnumerator UI_CallingIsPointerOverGameObject_FromActionCallback_ResultsI
21792188
yield return null;
21802189
}
21812190

2191+
#if UNITY_IOS || UNITY_TVOS
2192+
[Ignore("Failing on iOS https://jira.unity3d.com/browse/ISX-448")]
2193+
#endif
21822194
[UnityTest]
21832195
[Category("UI")]
21842196
public IEnumerator UI_CanGetRaycastResultMatchingEvent()
@@ -2239,6 +2251,9 @@ public IEnumerator UI_CanGetRaycastResultMatchingEvent()
22392251
Assert.That(raycastResult.isValid, Is.False);
22402252
}
22412253

2254+
#if UNITY_IOS || UNITY_TVOS
2255+
[Ignore("Failing on iOS https://jira.unity3d.com/browse/ISX-448")]
2256+
#endif
22422257
[UnityTest]
22432258
[Category("UI")]
22442259
public IEnumerator UI_XRTrackingOriginTransformModifiesTrackedPointers()

0 commit comments

Comments
 (0)