From e11abea9d4096ab7b750c565cb292675fd5c2682 Mon Sep 17 00:00:00 2001 From: Matan Lurey Date: Thu, 1 Aug 2024 13:13:42 -0700 Subject: [PATCH] Disable DDS and Dart profiling for Android driver tests. (#152696) Work around https://github.com/flutter/flutter/issues/152684, and probably indefinitely if we don't need it. --- dev/bots/suite_runners/run_flutter_driver_android_tests.dart | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dev/bots/suite_runners/run_flutter_driver_android_tests.dart b/dev/bots/suite_runners/run_flutter_driver_android_tests.dart index 8c3fb5e64e..b37d36d80f 100644 --- a/dev/bots/suite_runners/run_flutter_driver_android_tests.dart +++ b/dev/bots/suite_runners/run_flutter_driver_android_tests.dart @@ -44,6 +44,11 @@ Future runFlutterDriverAndroidTests() async { 'flutter', [ 'drive', + // There are no reason to enable development flags for this test. + // Disable them to work around flakiness issues, and in general just + // make less things start up unnecessarily. + '--no-dds', + '--no-enable-dart-profiling', '--test-arguments=test', '--test-arguments=--reporter=expanded', ],