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

Unified Diff: docs/android_test_instructions.md

Issue 2692273004: Update Android junit docs to make it clear how to specify out path. (Closed)
Patch Set: Created 3 years, 10 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: docs/android_test_instructions.md
diff --git a/docs/android_test_instructions.md b/docs/android_test_instructions.md
index 5bd33bca79dbd603236fafb91e2436afd7325bde..b26130cc6f478038de9c01f25e2a5d35de521dfd 100644
--- a/docs/android_test_instructions.md
+++ b/docs/android_test_instructions.md
@@ -206,13 +206,13 @@ run the test.
```shell
# Build the test suite.
-ninja -C out/Release chrome_junit_tests
+ninja -C out/my_build chrome_junit_tests
# Run the test suite.
-build/android/test_runner.py junit -s chrome_junit_tests --release -vvv
+BUILDTYPE=my_build build/android/test_runner.py junit -s chrome_junit_tests -vvv
# Run a subset of tests. You might need to pass the package name for some tests.
-build/android/test_runner.py junit -s chrome_junit_tests --release -vvv
+BUILDTYPE=my_build build/android/test_runner.py junit -s chrome_junit_tests -vvv
-f "org.chromium.chrome.browser.media.*"
```
« 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