Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(221)

Unified Diff: tools/testing/dart/test_suite.dart

Issue 9621015: Multitest annotations now accept multiple annotations on one line. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« tools/testing/dart/test_runner.dart ('K') | « tools/testing/dart/test_runner.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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,
« tools/testing/dart/test_runner.dart ('K') | « tools/testing/dart/test_runner.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698