From cd8e84f46511462fdc7ae8ffee2c9c1f7971fba3 Mon Sep 17 00:00:00 2001 From: Yegor Date: Wed, 5 Jun 2024 08:02:53 -0700 Subject: [PATCH] make output of flutter run web tests verbose (#149694) This is to make debugging flakes on LUCI easier. Right now, when the tool crashes it saves the error output into a file and prints the file path, but the file is not accessible from LUCI. Example: https://logs.chromium.org/logs/flutter/buildbucket/cr-buildbucket/8746361237956626577/+/u/run_test.dart_for_web_long_running_tests_shard_and_subshard_5_5/stdout --- dev/bots/suite_runners/run_web_tests.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/dev/bots/suite_runners/run_web_tests.dart b/dev/bots/suite_runners/run_web_tests.dart index d3b4a380d2..e9b471101b 100644 --- a/dev/bots/suite_runners/run_web_tests.dart +++ b/dev/bots/suite_runners/run_web_tests.dart @@ -521,6 +521,7 @@ class WebTestsSuite { flutter, [ 'run', + '--verbose', '--debug', '-d', 'chrome',