0

Update Android junit docs to make it clear how to specify out path.

Previous command-line specified --release which only worked if you
build under out/Release. New instructions make it clear how to
specify a custom one - uses my_build which GN docs use as an
example too.

BUG=none
TBR=tedchoc@chromium.org

Review-Url: https://codereview.chromium.org/2692273004
Cr-Commit-Position: refs/heads/master@{#450464}
This commit is contained in:
asvitkine
2017-02-14 12:57:14 -08:00
committed by Commit bot
parent 85bbd9d172
commit a7fdb063c5

@ -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.*"
```