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