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

Unified Diff: utils/testrunner/run_pipeline.dart

Issue 26443003: pkg/unittest: remove testState (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: again? Created 7 years, 2 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
« no previous file with comments | « pkg/unittest/lib/unittest.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/testrunner/run_pipeline.dart
diff --git a/utils/testrunner/run_pipeline.dart b/utils/testrunner/run_pipeline.dart
index f1de2d300820508ac155922141430ca6ab6a7c9b..d1195e4bbac5ec10d7ceebe4f8bbb4bb93e52a8a 100644
--- a/utils/testrunner/run_pipeline.dart
+++ b/utils/testrunner/run_pipeline.dart
@@ -178,7 +178,6 @@ part '${normalizePath('${config["runnerDir"]}/standard_test_runner.dart')}';
excludeFilters = ${config["exclude"]};
tprint = (msg) => print('###\$msg');
notifyDone = (e) { exit(e); };
- testState["port"] = $serverPort;
''';
} else {
directives = '''
@@ -194,7 +193,6 @@ part '${normalizePath('${config["runnerDir"]}/standard_test_runner.dart')}';
excludeFilters = ${config["exclude"]};
tprint = (msg) => query('#console').appendText('###\$msg\\n');
notifyDone = (e) => window.postMessage('done', '*');
- testState["port"] = $serverPort;
''';
}
@@ -247,7 +245,6 @@ part '${normalizePath('${config["runnerDir"]}/layout_test_runner.dart')}';
main() {
includeFilters = ${config["include"]};
excludeFilters = ${config["exclude"]};
- unittest.testState["port"] = $serverPort;
runTests(test.main);
}
''');
« no previous file with comments | « pkg/unittest/lib/unittest.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698