aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/bots/recipes/upload_coverage_results.py
diff options
context:
space:
mode:
Diffstat (limited to 'infra/bots/recipes/upload_coverage_results.py')
-rw-r--r--infra/bots/recipes/upload_coverage_results.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/infra/bots/recipes/upload_coverage_results.py b/infra/bots/recipes/upload_coverage_results.py
index 6df7c6e11f..91fa79c2dd 100644
--- a/infra/bots/recipes/upload_coverage_results.py
+++ b/infra/bots/recipes/upload_coverage_results.py
@@ -48,13 +48,13 @@ def RunSteps(api):
# The raw data files are brought in as isolated inputs. It is possible
# for there to be 1 if the coverage task wasn't broken up.
- raw_inputs = api.file.glob_paths(
- 'find raw inputs', api.path['start_dir'].join('coverage'),
- RAW_FILE, test_data=['a.raw', 'b.raw', 'c.raw'])
+ raw_inputs = api.file.glob_paths('find raw inputs', api.path['start_dir'],
+ RAW_FILE,
+ test_data=['a.raw', 'b.raw', 'c.raw'])
# The instrumented executable is brought in as an isolated input.
- executable = api.path['start_dir'].join('build', 'out','Debug','dm')
+ executable = api.path['start_dir'].join('out','Debug','dm')
# clang_dir is brought in via CIPD.
clang_dir = api.path['start_dir'].join('clang_linux', 'bin')