| Index: tools/testing/dart/test_suite.dart
|
| diff --git a/tools/testing/dart/test_suite.dart b/tools/testing/dart/test_suite.dart
|
| index fa255d56782b4bfa3b672eede1b8c32472a90389..e39e71febbeec8da1a4a714f9f73204a9f34d4b7 100644
|
| --- a/tools/testing/dart/test_suite.dart
|
| +++ b/tools/testing/dart/test_suite.dart
|
| @@ -178,7 +178,7 @@ class TestInformation {
|
| bool hasFatalTypeErrors;
|
| bool hasRuntimeErrors;
|
| // expected outcome from multi-test "static type error", "compile-time error", etc
|
| - String multitestOutcome;
|
| + Set<String> multitestOutcome;
|
|
|
| TestInformation(this.filename, this.optionsFromFile, this.isNegative,
|
| this.isNegativeIfChecked, this.hasFatalTypeErrors,
|
| @@ -370,7 +370,7 @@ class StandardTestSuite implements TestSuite {
|
| [bool isNegativeIfChecked = false,
|
| bool hasFatalTypeErrors = false,
|
| bool hasRuntimeErrors = false,
|
| - String multitestOutcome = null]) {
|
| + Set<String> multitestOutcome = null]) {
|
| // Cache the test information for each test case.
|
| var info = new TestInformation(filename,
|
| optionsFromFile,
|
|
|