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

Commit a76b44d

Browse files
authored
Disable flutter_desktop_darwin_unittests on arm64
1 parent 4bdfdbe commit a76b44d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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)