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

Unified Diff: build/android/test_runner.py

Issue 2284143002: [Android] Fix symlink --output-directory handling in test_runner.py. (Closed)
Patch Set: Created 4 years, 4 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/test_runner.py
diff --git a/build/android/test_runner.py b/build/android/test_runner.py
index e4747aba5d9b7cd70eb219465c88065d9fcb8b23..916975e7dbebeaef0593e211569d115c320fbea9 100755
--- a/build/android/test_runner.py
+++ b/build/android/test_runner.py
@@ -64,10 +64,11 @@ def AddCommonOptions(parser):
help=('If set, run test suites under out/Release. '
'Default is env var BUILDTYPE or Debug.'))
+ # TODO(jbudorick): Remove --build-directory once no bots use it.
group.add_argument('--build-directory', dest='build_directory',
- help=('Path to the directory in which build files are'
- ' located (should not include build type)'))
+ help='DEPRECATED')
group.add_argument('--output-directory', dest='output_directory',
+ type=os.path.realpath,
help=('Path to the directory in which build files are'
' located (must include build type). This will take'
' precedence over --debug, --release and'
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698