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

Unified Diff: tools/full-coverage.dart

Issue 26520002: Ignore ".DS_Store" and other unexpected files in coverage directory. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/full-coverage.dart
diff --git a/tools/full-coverage.dart b/tools/full-coverage.dart
index 9683e86a86574a5e2e78ea0627ef6a2f83f1aa2b..6c54a8a97380e7920b2413e262d342869cc0b78a 100644
--- a/tools/full-coverage.dart
+++ b/tools/full-coverage.dart
@@ -72,7 +72,7 @@ class Resolver {
}
var filePath =
"${_env["pkgRoot"]}"
- "/${import.substring(PACKAGE_PREFIX.length, import.length)}";
+ "/${import.substring(PACKAGE_PREFIX.length, import.length)}";
return filePath;
}
if (import.startsWith(FILE_PREFIX)) {
@@ -92,7 +92,7 @@ class Resolver {
/// env.output.
///
/// Returns a [Future] that completes as soon as all map entries have been
-/// emitted.
+/// emitted.
Future lcov(Map hitmap) {
var emitOne = (key) {
var v = hitmap[key];
@@ -115,7 +115,7 @@ Future lcov(Map hitmap) {
/// to env.output.
///
/// Returns a [Future] that completes as soon as all map entries have been
-/// emitted.
+/// emitted.
Future prettyPrint(Map hitMap, List failedLoads) {
var emitOne = (key) {
var v = hitMap[key];
@@ -139,7 +139,7 @@ Future prettyPrint(Map hitMap, List failedLoads) {
prefix = b.toString();
}
env.output.write("${prefix}|${lines[line-1]}\n");
- }
+ }
c.complete();
});
return c.future;
@@ -191,7 +191,7 @@ Map createHitmap(String rawJson, Resolver resolver) {
JSON.decode(rawJson).forEach((Map e) {
String source = resolver.resolve(e["source"]);
- if (source == null) {
+ if (source == null) {
// Couldnt resolve import, so skip this entry.
return;
}
@@ -233,7 +233,7 @@ mergeHitmaps(Map newMap, Map result) {
} else {
result[file][line] += cnt;
}
- });
+ });
} else {
result[file] = v;
}
@@ -245,17 +245,12 @@ mergeHitmaps(Map newMap, Map result) {
/// it is a file.
List filesToProcess(String absPath) {
if (FileSystemEntity.isDirectorySync(absPath)) {
- Directory d = new Directory(absPath);
- List files = [];
- d.listSync(recursive: true).forEach((FileSystemEntity entity) {
- if (entity is File) {
- files.add(entity as File);
- }
- });
- return files;
- } else if (FileSystemEntity.isFileSync(absPath)) {
- return [ new File(absPath) ];
- }
+ return new Directory(absPath).listSync(recursive: true)
+ .where((entity) => entity is File && extension(entity.path) == ".json")
Ivan Posva 2013/10/08 17:50:31 Actually we only want files of the form "dart-cov-
Bob Nystrom 2013/10/08 18:25:27 Done.
+ .toList();
+ }
+
+ return [new File(absPath)];
}
worker() {
@@ -278,7 +273,7 @@ worker() {
if (contents.length > 0) {
mergeHitmaps(createHitmap(contents, resolver), workerHitmap);
}
- });
+ });
if (env["verbose"]) {
final end = new DateTime.now().millisecondsSinceEpoch;
print("worker[${me}]: Finished processing files. "
@@ -326,7 +321,7 @@ main() {
port.receive((Message message, reply) {
if (message.type == Message.RESULT) {
- mergeHitmaps(message.payload[0], globalHitmap);
+ mergeHitmaps(message.payload[0], globalHitmap);
failedResolves.addAll(message.payload[1]);
doneCnt++;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698