| Index: tools/testing/dart/test_suite.dart
|
| diff --git a/tools/testing/dart/test_suite.dart b/tools/testing/dart/test_suite.dart
|
| index d288da8ddccac001d1bd9ffe4923ba34fdd7a281..dbab65e1c78a852fc644d343c99b60348b16f732 100644
|
| --- a/tools/testing/dart/test_suite.dart
|
| +++ b/tools/testing/dart/test_suite.dart
|
| @@ -234,21 +234,6 @@ abstract class TestSuite {
|
| return dartExecutable;
|
| }
|
|
|
| - String get dartVmProductBinaryFileName {
|
| - // Controlled by user with the option "--dart".
|
| - String dartExecutable = configuration['dart'];
|
| -
|
| - if (dartExecutable == '') {
|
| - String suffix = executableBinarySuffix;
|
| - dartExecutable = useSdk
|
| - ? '$buildDir/dart-sdk/bin/dart_product$suffix'
|
| - : '$buildDir/dart_product$suffix';
|
| - }
|
| -
|
| - TestUtils.ensureExists(dartExecutable, configuration);
|
| - return dartExecutable;
|
| - }
|
| -
|
| String get d8FileName {
|
| var suffix = getExecutableSuffix('d8');
|
| var d8Dir = TestUtils.dartDir.append('third_party/d8');
|
|
|