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

Unified Diff: third_party/lcov/bin/genhtml

Issue 523031: coverage_posix.py: use proper root directory for Linux now that... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years 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 | tools/code_coverage/coverage_posix.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/lcov/bin/genhtml
===================================================================
--- third_party/lcov/bin/genhtml (revision 35264)
+++ third_party/lcov/bin/genhtml (working copy)
@@ -4177,7 +4177,8 @@
}
open(SOURCE_HANDLE, "<".$source_filename)
- or die("ERROR: cannot open $source_filename for reading!\n");
+ # or die("ERROR: cannot open $source_filename for reading!\n");
+ or open(SOURCE_HANDLE, "</dev/null");
write_source_prolog(*HTML_HANDLE);
« no previous file with comments | « no previous file | tools/code_coverage/coverage_posix.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698