From d3571a28a191b5bf2ae6111c4542541d14e6cb99 Mon Sep 17 00:00:00 2001 From: Jason Simmons Date: Fri, 21 Mar 2025 17:36:44 +0000 Subject: [PATCH] Remove the path_ops library test from the run_tests script (#165675) This test was not running previously on the Linux builder, but it started running again when ASAN was disabled due to the Ubuntu 24 upgrade on LUCI. The test is not currently functioning as intended and needs to be disabled until the Ubuntu upgrade is stable. See https://github.com/flutter/flutter/pull/165661 --- engine/src/flutter/testing/run_tests.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/engine/src/flutter/testing/run_tests.py b/engine/src/flutter/testing/run_tests.py index 8cd8776181..22c2672029 100755 --- a/engine/src/flutter/testing/run_tests.py +++ b/engine/src/flutter/testing/run_tests.py @@ -976,8 +976,6 @@ def build_dart_host_test_list(build_dir): os.path.join('flutter', 'tools', 'pkg', 'engine_repo_tools'), os.path.join('flutter', 'tools', 'pkg', 'git_repo_tools'), ] - if not is_asan(build_dir): - dart_host_tests += [os.path.join('flutter', 'tools', 'path_ops', 'dart')] return dart_host_tests