| Index: tests/stub-generator/test_config.dart
|
| diff --git a/tests/stub-generator/test_config.dart b/tests/stub-generator/test_config.dart
|
| index 91ce5bb4f01fce133a74f2d737b5d9da1ea7a48b..013913fe23ff7cb6ac7709b242c3cdbd4a0ec9f0 100644
|
| --- a/tests/stub-generator/test_config.dart
|
| +++ b/tests/stub-generator/test_config.dart
|
| @@ -81,12 +81,15 @@ class StubGeneratorTestSuite extends StandardTestSuite {
|
| File stubsOutFile = new File("${temp.path}/${interfaceFile}");
|
| stubsOutFile.createSync();
|
| String stubsPath = stubsOutFile.fullPathSync();
|
| - Process dartcProcess = new Process(dartcPath,
|
| - [filename,
|
| - '-noincremental',
|
| - '-out', temp.path,
|
| - '-isolate-stub-out', stubsPath,
|
| - '-generate-isolate-stubs', classes ]);
|
| + List<String> args = [filename,
|
| + '-noincremental',
|
| + '-out', temp.path,
|
| + '-isolate-stub-out', stubsPath,
|
| + '-generate-isolate-stubs', classes ];
|
| + if (configuration['verbose']) {
|
| + print("# $dartcPath ${Strings.join(args, ' ')}");
|
| + }
|
| + Process dartcProcess = new Process(dartcPath, args);
|
| dartcProcess.exitHandler = (int exitCode) {
|
| combineFiles(filename, stubsPath, onGenerated);
|
| };
|
|
|