| Index: tools/testing/dart/test_suite.dart
|
| diff --git a/tools/testing/dart/test_suite.dart b/tools/testing/dart/test_suite.dart
|
| index e994822dde214285f4d0b194fb41c7eafd4ef6a5..c13b69a8264d83896fdef0f4c3595416b6536f11 100644
|
| --- a/tools/testing/dart/test_suite.dart
|
| +++ b/tools/testing/dart/test_suite.dart
|
| @@ -234,6 +234,13 @@ abstract class TestSuite {
|
| return dartExecutable;
|
| }
|
|
|
| + String get processTestBinaryFileName {
|
| + String suffix = executableBinarySuffix;
|
| + String processTestExecutable = '$buildDir/process_test$suffix';
|
| + TestUtils.ensureExists(processTestExecutable, configuration);
|
| + return processTestExecutable;
|
| + }
|
| +
|
| String get d8FileName {
|
| var suffix = getExecutableSuffix('d8');
|
| var d8Dir = TestUtils.dartDir.append('third_party/d8');
|
|
|