Skip to content

Commit

Permalink
Make java-test output more useful (flutter#4184)
Browse files Browse the repository at this point in the history
  • Loading branch information
bparrishMines authored Jul 24, 2021
1 parent d17489c commit e5bed35
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion script/tool/lib/src/native_test_command.dart
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ this command.
}

final int exitCode = await processRunner.runAndStream(
gradleFile.path, <String>['testDebugUnitTest', '--info'],
gradleFile.path, <String>['testDebugUnitTest'],
workingDir: androidDirectory);
if (exitCode != 0) {
printError('$exampleName tests failed.');
Expand Down
6 changes: 3 additions & 3 deletions script/tool/test/native_test_command_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ void main() {
orderedEquals(<ProcessCall>[
ProcessCall(
androidFolder.childFile('gradlew').path,
const <String>['testDebugUnitTest', '--info'],
const <String>['testDebugUnitTest'],
androidFolder.path,
),
]),
Expand Down Expand Up @@ -406,7 +406,7 @@ void main() {
orderedEquals(<ProcessCall>[
ProcessCall(
androidFolder.childFile('gradlew').path,
const <String>['testDebugUnitTest', '--info'],
const <String>['testDebugUnitTest'],
androidFolder.path,
),
]),
Expand Down Expand Up @@ -812,7 +812,7 @@ void main() {
orderedEquals(<ProcessCall>[
ProcessCall(
androidFolder.childFile('gradlew').path,
const <String>['testDebugUnitTest', '--info'],
const <String>['testDebugUnitTest'],
androidFolder.path),
ProcessCall(
'xcrun',
Expand Down

0 comments on commit e5bed35

Please sign in to comment.