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

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

Issue 23926012: Revert 221736 "[android] Adds constants.GetOutDirectory() and co..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: 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: trunk/src/build/android/pylib/utils/report_results.py
===================================================================
--- trunk/src/build/android/pylib/utils/report_results.py (revision 222006)
+++ trunk/src/build/android/pylib/utils/report_results.py (working copy)
@@ -15,7 +15,8 @@
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.GetOutDirectory(), 'test_logs')
+ log_file_path = os.path.join(constants.DIR_SOURCE_ROOT, 'out',
+ constants.GetBuildType(), 'test_logs')
if not os.path.exists(log_file_path):
os.mkdir(log_file_path)
full_file_name = os.path.join(

Powered by Google App Engine
This is Rietveld 408576698