Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Disable flaky tests on arm64 #41740

Merged
merged 2 commits into from
May 4, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// These tests are flaky on arm64.
// TODO(dnfield): reenable after fixing https://github.com/flutter/flutter/issues/126013
#if !defined(__aarch64__) && !defined(__arm64__)

#if !__has_feature(objc_arc)
#error ARC must be enabled!
#endif
Expand Down Expand Up @@ -356,3 +360,5 @@ - (void)testEventChannelTaskQueue {
}

@end

#endif // !defined(__arch64__) && !defined(__arm64__)