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

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

Issue 218683009: test.dart: Add timeout for browsers that are started but do not fetch tests. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix long lines Created 6 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
Index: tools/testing/dart/scrub_status_file.dart
diff --git a/tools/testing/dart/scrub_status_file.dart b/tools/testing/dart/scrub_status_file.dart
index 4aced43be2e85894427a9e1fe98214d38ca718b5..2b28deba8767f3c141d2bc3f4c4e8b40bcf2dcf1 100644
--- a/tools/testing/dart/scrub_status_file.dart
+++ b/tools/testing/dart/scrub_status_file.dart
@@ -14,6 +14,7 @@
import 'dart:io';
import 'status_file_parser.dart';
+import 'utils.dart';
const List<String> CO19_STATUS_FILES = const <String>[
'tests/co19/co19-compiler.status',
@@ -37,7 +38,7 @@ void onSectionsRead(String statusFile, List sections) {
void readStatusFile(String path) {
var sections = [];
- ReadConfigurationInto(path,
+ ReadConfigurationInto(new Path(path),
sections,
() => onSectionsRead(path, sections));
}
« tools/testing/dart/browser_controller.dart ('K') | « tools/testing/dart/browser_controller.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698