Commit 2d01e3cc authored by Justin Cohen's avatar Justin Cohen Committed by Commit Bot

ios: Disable ARQuickLook tests on iOS12/Xcode12b4.

XCUIElement queries used in ARQuickLook are broken on Xcode 12 beta 4
when running on the iOS 12 simulator.  Disable until Xcode is fixed.

Bug: 1114202
Change-Id: Ib16458ee93e6821b5520cbd791e3ba8e6beccfe4
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2341220
Auto-Submit: Justin Cohen <justincohen@chromium.org>
Commit-Queue: Rohit Rao <rohitrao@chromium.org>
Reviewed-by: default avatarRohit Rao <rohitrao@chromium.org>
Cr-Commit-Position: refs/heads/master@{#795982}
parent 9f54bb86
...@@ -84,6 +84,19 @@ std::unique_ptr<net::test_server::HttpResponse> GetResponse( ...@@ -84,6 +84,19 @@ std::unique_ptr<net::test_server::HttpResponse> GetResponse(
@implementation ARQuickLookEGTest @implementation ARQuickLookEGTest
#if defined(__IPHONE_14_0) && __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_14_0
// TODO(crbug.com/1114202): The XCUIElement queries in this test are broken on
// Xcode 12 beta 4 when running on the iOS 12 simulator. Disable until Xcode
// is fixed.
+ (NSArray*)testInvocations {
if (@available(iOS 13, *)) {
return [super testInvocations];
} else {
return @[];
}
}
#endif
- (void)setUp { - (void)setUp {
[super setUp]; [super setUp];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment