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

Unified Diff: scripts/slave/recipe_modules/chromium_tests/steps.py

Issue 1919193002: build: roll infra_paths changes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: merge Created 4 years, 8 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
Index: scripts/slave/recipe_modules/chromium_tests/steps.py
diff --git a/scripts/slave/recipe_modules/chromium_tests/steps.py b/scripts/slave/recipe_modules/chromium_tests/steps.py
index 2dc8029266f0d6bdc4d7bc41f372d74b6f2bd38e..8f06c10a835efdf28ddf92bd2a7ffad18b342c5e 100644
--- a/scripts/slave/recipe_modules/chromium_tests/steps.py
+++ b/scripts/slave/recipe_modules/chromium_tests/steps.py
@@ -580,7 +580,7 @@ class DynamicPerfTests(Test):
def _run_sharded(self, api, tests):
known_devices_file = (
- api.path['build'].join(
+ api.infra_paths['build'].join(
'site_config', self._known_devices_file) if self._known_devices_file
else None)
api.chromium_android.run_sharded_perf_tests(
@@ -1678,7 +1678,7 @@ class BlinkTest(Test):
return True
def run(self, api, suffix, test_filter=None):
- results_dir = api.path['slave_build'].join('layout-test-results')
+ results_dir = api.infra_paths['slave_build'].join('layout-test-results')
step_name = self._step_name(suffix)
args = [
@@ -1702,7 +1702,7 @@ class BlinkTest(Test):
try:
step_result = api.chromium.runtest(
- api.path['build'].join('scripts', 'slave', 'chromium',
+ api.infra_paths['build'].join('scripts', 'slave', 'chromium',
'layout_test_wrapper.py'),
args, name=step_name,
# TODO(phajdan.jr): Clean up the runtest.py mess.
@@ -1734,7 +1734,7 @@ class BlinkTest(Test):
buildername = api.properties['buildername']
buildnumber = api.properties['buildnumber']
- archive_layout_test_results = api.path['build'].join(
+ archive_layout_test_results = api.infra_paths['build'].join(
'scripts', 'slave', 'chromium', 'archive_layout_test_results.py')
archive_layout_test_args = [
« no previous file with comments | « scripts/slave/recipe_modules/chromium_tests/example.expected/basic.json ('k') | scripts/slave/recipe_modules/cipd/__init__.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698