File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ def do_coverage_run( # pylint: disable=too-many-locals
44
44
"""Does a coverage run of |coverage_binary| on |new_units_dir|. Writes
45
45
the result to |profraw_file_pattern|."""
46
46
with tempfile .TemporaryDirectory () as merge_dir :
47
+ logger .info ("coverage binary exists?: %s" , os .path .exists (os .path .abspath (coverage_binary )))
47
48
command = [
48
49
coverage_binary , '-merge=1' , '-dump_coverage=1' ,
49
50
f'-artifact_prefix={ crashes_dir } /' , f'-timeout={ UNIT_TIMEOUT } ' ,
@@ -61,6 +62,8 @@ def do_coverage_run( # pylint: disable=too-many-locals
61
62
expect_zero = False ,
62
63
kill_children = True ,
63
64
timeout = MAX_TOTAL_TIME )
65
+
66
+ logger .info ("coverage dir after coverage run %s" , os .listdir (coverage_binary_dir ))
64
67
65
68
if result .retcode != 0 :
66
69
logger .error ('Coverage run failed.' ,
You can’t perform that action at this time.
0 commit comments