| OLD | NEW |
| 1 # Android Test Instructions | 1 # Android Test Instructions |
| 2 | 2 |
| 3 [TOC] | 3 [TOC] |
| 4 | 4 |
| 5 ## Device Setup | 5 ## Device Setup |
| 6 | 6 |
| 7 ### Physical Device Setup | 7 ### Physical Device Setup |
| 8 | 8 |
| 9 #### ADB Debugging | 9 #### ADB Debugging |
| 10 | 10 |
| (...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 291 | 291 |
| 292 # Run a subset of tests by annotation, such as filtering by Feature | 292 # Run a subset of tests by annotation, such as filtering by Feature |
| 293 out/Debug/bin/run_content_shell_test_apk -A Feature=Navigation | 293 out/Debug/bin/run_content_shell_test_apk -A Feature=Navigation |
| 294 ``` | 294 ``` |
| 295 | 295 |
| 296 You might want to add stars `*` to each as a regular expression, e.g. | 296 You might want to add stars `*` to each as a regular expression, e.g. |
| 297 `*`AddressDetectionTest`*` | 297 `*`AddressDetectionTest`*` |
| 298 | 298 |
| 299 ## Running Blink Layout Tests | 299 ## Running Blink Layout Tests |
| 300 | 300 |
| 301 See | 301 See [Layout Tests](testing/layout_tests.md). |
| 302 https://sites.google.com/a/chromium.org/dev/developers/testing/webkit-layout-tes
ts | |
| 303 | 302 |
| 304 ## Running GPU tests | 303 ## Running GPU tests |
| 305 | 304 |
| 306 (e.g. the "Android Debug (Nexus 7)" bot on the chromium.gpu waterfall) | 305 (e.g. the "Android Debug (Nexus 7)" bot on the chromium.gpu waterfall) |
| 307 | 306 |
| 308 See http://www.chromium.org/developers/testing/gpu-testing for details. Use | 307 See http://www.chromium.org/developers/testing/gpu-testing for details. Use |
| 309 `--browser=android-content-shell`. Examine the stdio from the test invocation on | 308 `--browser=android-content-shell`. Examine the stdio from the test invocation on |
| 310 the bots to see arguments to pass to `src/content/test/gpu/run_gpu_test.py`. | 309 the bots to see arguments to pass to `src/content/test/gpu/run_gpu_test.py`. |
| OLD | NEW |