Skip to content

Commit fb48108

Browse files
committed
Disable flutter_desktop_darwin_unittests on arm64
1 parent edf2b9d commit fb48108

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

testing/run_tests.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,8 @@ def make_test(name, flags=None, extra_env=None):
505505
# flutter_desktop_darwin_unittests uses global state that isn't handled
506506
# correctly by gtest-parallel.
507507
# https://github.com/flutter/flutter/issues/104789
508-
if not os.path.basename(build_dir).startswith('host_debug'):
508+
variant = os.path.basename(build_dir)
509+
if not variant.startswith('host_debug') and 'arm64' not in variant:
509510
# Test is disabled for flaking in debug runs:
510511
# https://github.com/flutter/flutter/issues/127441
511512
run_engine_executable(

0 commit comments

Comments
 (0)