Skip to content

Commit

Permalink
Disable flutter_desktop_darwin_unittests on arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
zanderso authored Oct 16, 2024
1 parent 4bdfdbe commit a76b44d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion testing/run_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,8 @@ def make_test(name, flags=None, extra_env=None):
# flutter_desktop_darwin_unittests uses global state that isn't handled
# correctly by gtest-parallel.
# https://github.com/flutter/flutter/issues/104789
if not os.path.basename(build_dir).startswith('host_debug'):
variant = os.path.basename(build_dir)
if not variant.startswith('host_debug') and 'arm64' not in variant:
# Test is disabled for flaking in debug runs:
# https://github.com/flutter/flutter/issues/127441
run_engine_executable(
Expand Down

0 comments on commit a76b44d

Please sign in to comment.