From a76b44d84a3260ed2cad36f52f0701156f48814a Mon Sep 17 00:00:00 2001 From: Zachary Anderson Date: Wed, 16 Oct 2024 12:26:00 -0700 Subject: [PATCH] Disable flutter_desktop_darwin_unittests on arm64 --- testing/run_tests.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/testing/run_tests.py b/testing/run_tests.py index 3b71480f9dba9..66f49b97a65bc 100755 --- a/testing/run_tests.py +++ b/testing/run_tests.py @@ -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(