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

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

Issue 10632017: Revert "Added the ability to filter which tests are run by name, using a --filter argument passed t… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 6 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 | « dart/lib/unittest/unittest.dart ('k') | dart/tools/testing/dart/test_options.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/tools/testing/dart/browser_test.dart
diff --git a/dart/tools/testing/dart/browser_test.dart b/dart/tools/testing/dart/browser_test.dart
index 7c0948c5fe77799fc272262b22bc4c6816423074..f7dccc21a67413fcdbd9fab73b482d8108aec445 100644
--- a/dart/tools/testing/dart/browser_test.dart
+++ b/dart/tools/testing/dart/browser_test.dart
@@ -48,7 +48,7 @@ String WrapDartTestInLibrary(String test) =>
#source('${nativePathToUri(test)}');
""";
-String DartTestWrapper(String dartHome, String library, String filter) {
+String DartTestWrapper(String dartHome, String library) {
dartHome = nativePathToUri(dartHome);
library = nativePathToUri(library);
return """
@@ -63,7 +63,6 @@ main() {
config.useHtmlConfiguration();
try {
unittest.ensureInitialized();
- unittest.setFilter('$filter');
Test.main();
} catch(var e, var trace) {
unittest.reportTestError(
« no previous file with comments | « dart/lib/unittest/unittest.dart ('k') | dart/tools/testing/dart/test_options.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698