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

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

Issue 11293019: Run large html tests individually. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 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
Index: tools/testing/dart/status_file_parser.dart
===================================================================
--- tools/testing/dart/status_file_parser.dart (revision 14350)
+++ tools/testing/dart/status_file_parser.dart (working copy)
@@ -25,7 +25,7 @@
const RegExp StripComment = const RegExp("^[^#]*");
const RegExp HeaderPattern = const RegExp(r"^\[([^\]]+)\]");
-const RegExp RulePattern = const RegExp(r"\s*([^: ]*)\s*:(.*)");
Emily Fortuna 2012/11/01 05:19:11 I changed this regexp so that test descriptions co
Bill Hesse 2012/11/01 20:26:00 This might lead to exponential backtracking, becau
+const RegExp RulePattern = const RegExp(r"\s*([^:]*)\s*:(.*)");
// TODO(whesse): Implement configuration_info library that contains data
// structures for test configuration, including Section.

Powered by Google App Engine
This is Rietveld 408576698