Unverified Commit 42592adb authored by Jonah Williams's avatar Jonah Williams Committed by GitHub

Make flutter_attach_test_android test verbose (#55881)

parent 43ce3fd9
...@@ -115,7 +115,7 @@ void main() { ...@@ -115,7 +115,7 @@ void main() {
section('Launching `flutter attach`'); section('Launching `flutter attach`');
Process attachProcess = await startProcess( Process attachProcess = await startProcess(
path.join(flutterDirectory.path, 'bin', 'flutter'), path.join(flutterDirectory.path, 'bin', 'flutter'),
<String>['--suppress-analytics', 'attach', '-d', device.deviceId], <String>['-v', '--suppress-analytics', 'attach', '-d', device.deviceId],
isBot: false, // we just want to test the output, not have any debugging info isBot: false, // we just want to test the output, not have any debugging info
); );
...@@ -142,7 +142,7 @@ void main() { ...@@ -142,7 +142,7 @@ void main() {
section('Launching attach with given port'); section('Launching attach with given port');
attachProcess = await startProcess( attachProcess = await startProcess(
path.join(flutterDirectory.path, 'bin', 'flutter'), path.join(flutterDirectory.path, 'bin', 'flutter'),
<String>['--suppress-analytics', 'attach', '--debug-uri', <String>['-v', '--suppress-analytics', 'attach', '--debug-uri',
observatoryUri, '-d', device.deviceId], observatoryUri, '-d', device.deviceId],
isBot: false, // we just want to test the output, not have any debugging info isBot: false, // we just want to test the output, not have any debugging info
); );
...@@ -163,7 +163,7 @@ void main() { ...@@ -163,7 +163,7 @@ void main() {
// Attach again now that the VM is already running. // Attach again now that the VM is already running.
attachProcess = await startProcess( attachProcess = await startProcess(
path.join(flutterDirectory.path, 'bin', 'flutter'), path.join(flutterDirectory.path, 'bin', 'flutter'),
<String>['--suppress-analytics', 'attach', '-d', device.deviceId], <String>['-v', '--suppress-analytics', 'attach', '-d', device.deviceId],
isBot: false, // we just want to test the output, not have any debugging info isBot: false, // we just want to test the output, not have any debugging info
); );
// Verify that it can discover the observatory port from past logs. // Verify that it can discover the observatory port from past logs.
......
...@@ -373,6 +373,8 @@ tasks: ...@@ -373,6 +373,8 @@ tasks:
# required_agent_capabilities: ["linux/android"] # required_agent_capabilities: ["linux/android"]
# flaky: true # flaky: true
# TODO(jonahwilliams): marked as flaky to due unreproducible errors
# 55875 and 55811
flutter_attach_test_android: flutter_attach_test_android:
description: > description: >
Tests the `flutter attach` command. Tests the `flutter attach` command.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment