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

Unified Diff: build/android/pylib/utils/report_results.py

Issue 22903016: [android] Adds constants.GetOutDirectory() and converts test scripts to use it. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix provision_devices.py which never set the build type Created 7 years, 3 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: build/android/pylib/utils/report_results.py
diff --git a/build/android/pylib/utils/report_results.py b/build/android/pylib/utils/report_results.py
index 75ef3222d0d1bfc92692553846293ec5942922c3..2668145e34b19cf2d2bace1ce995a602e2b0a967 100644
--- a/build/android/pylib/utils/report_results.py
+++ b/build/android/pylib/utils/report_results.py
@@ -15,8 +15,7 @@ import flakiness_dashboard_results_uploader
def _LogToFile(results, test_type, suite_name):
"""Log results to local files which can be used for aggregation later."""
- log_file_path = os.path.join(constants.DIR_SOURCE_ROOT, 'out',
- constants.GetBuildType(), 'test_logs')
+ log_file_path = os.path.join(constants.GetOutDirectory(), 'test_logs')
if not os.path.exists(log_file_path):
os.mkdir(log_file_path)
full_file_name = os.path.join(
« no previous file with comments | « build/android/pylib/host_driven/test_case.py ('k') | chrome/test/functional/ispy/ispy_core/tools/reverse_port_forwarder.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698