| Index: tools/testing/dart/test_options.dart
|
| diff --git a/tools/testing/dart/test_options.dart b/tools/testing/dart/test_options.dart
|
| index 0bd04861a3c15a92173996a8bdcd8d3e6cba2f51..4b7e97b4f7f23b4e26f36a829fe442fe9f473931 100644
|
| --- a/tools/testing/dart/test_options.dart
|
| +++ b/tools/testing/dart/test_options.dart
|
| @@ -6,6 +6,7 @@
|
|
|
| #import("dart:io");
|
| #import("dart:builtin");
|
| +#import("drt_updater.dart");
|
|
|
| List<String> defaultTestSelectors =
|
| const ['dartc', 'samples', 'standalone', 'corelib', 'co19', 'language',
|
| @@ -457,6 +458,11 @@ Controls how dart code is compiled and executed.
|
| result.addAll(_expandConfigurations(newConfiguration));
|
| }
|
| return result;
|
| + } else {
|
| + // All components eventually go through this path, after expansion.
|
| + if (DumpRenderTreeUpdater.componentRequiresDRT(components)) {
|
| + DumpRenderTreeUpdater.update();
|
| + }
|
| }
|
|
|
| // Adjust default timeout based on mode and component.
|
|
|