Index: third_party/lcov/bin/mcov |
=================================================================== |
--- third_party/lcov/bin/mcov (revision 17371) |
+++ third_party/lcov/bin/mcov (working copy) |
@@ -252,8 +252,10 @@ |
my $number; |
local *INPUT; |
- ## TODO(ajeya): Exit more gracefully here. |
- open(INPUT, $filename) or die("ERROR: cannot read $filename!\n"); |
+ if (!open(INPUT, $filename)) { |
+ warn("WARNING: cannot read $filename!\n"); |
+ return @result; |
+ } |
# Parse gcov output and populate the array |
my @lines = <INPUT>; |