| Index: dart/tools/testing/dart/drt_updater.dart
|
| diff --git a/dart/tools/testing/dart/drt_updater.dart b/dart/tools/testing/dart/drt_updater.dart
|
| index 725f7e2132572fe2c0c005673210bb3d50d2030e..6713a88db761e889ed2adfa0aa73befa37251e80 100644
|
| --- a/dart/tools/testing/dart/drt_updater.dart
|
| +++ b/dart/tools/testing/dart/drt_updater.dart
|
| @@ -6,6 +6,8 @@
|
|
|
| #import("dart:io");
|
|
|
| +#import("test_suite.dart");
|
| +
|
| class _DartiumUpdater {
|
| String name;
|
| String script;
|
| @@ -34,7 +36,7 @@ class _DartiumUpdater {
|
| }
|
|
|
| List<String> get _getUpdateCommand {
|
| - Path testScriptPath = new Path.fromNative(new Options().script);
|
| + Path testScriptPath = new Path.fromNative(TestUtils.testScriptPath);
|
| Path updateScriptPath = testScriptPath.directoryPath.append(script);
|
| List<String> command = [updateScriptPath.toNativePath()];
|
| if (null !== option) {
|
|
|