summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authornewt <newt@chromium.org>2015-08-27 02:07:26 -0700
committerCommit bot <commit-bot@chromium.org>2015-08-27 09:08:38 +0000
commit17e4d24493bf909583948d61c5adfe9601386e19 (patch)
treebbb49107418bba13eeeccdf5a3a93902f8baad26 /docs
parent2009a6a60396a08da281291c993df84730b5ac5c (diff)
downloadchromium_src-17e4d24493bf909583948d61c5adfe9601386e19.zip
chromium_src-17e4d24493bf909583948d61c5adfe9601386e19.tar.gz
chromium_src-17e4d24493bf909583948d61c5adfe9601386e19.tar.bz2
Update ChromeShell -> ChromePublic in Android Test Instructions.
ChromeShell is going away and these use cases have been supplanted by ChromePublic. BUG=510220 Review URL: https://codereview.chromium.org/1314223005 Cr-Commit-Position: refs/heads/master@{#345824}
Diffstat (limited to 'docs')
-rw-r--r--docs/android_test_instructions.md20
1 files changed, 10 insertions, 10 deletions
diff --git a/docs/android_test_instructions.md b/docs/android_test_instructions.md
index 47959e5..a25b3d4 100644
--- a/docs/android_test_instructions.md
+++ b/docs/android_test_instructions.md
@@ -95,16 +95,16 @@ are some general rules:
* If your test code lives under /content, it will probably be built as part of
the content\_shell\_test\_apk * If your test code lives under /chrome (or
- higher), it will probably be built as part of the chrome\_shell\_test\_apk *
+ higher), it will probably be built as part of the chrome\_public\_test\_apk *
(Please fill in more details here if you know them).
- NB: We used to call the chrome\_shell\_test\_apk the
+ NB: We used to call the chrome\_public\_test\_apk the
chromium\_shell\_test\_apk. There may still be references to this kicking
around, but wherever you see chromium\_shell\_test you should replace with
- chrome\_shell\_test.
+ chrome\_public\_test.
Once you know what to build, just do it like you normally would build anything
-else, e.g.: `ninja -C out/Release chrome_shell_test_apk`
+else, e.g.: `ninja -C out/Release chrome_public_test_apk`
## Running Tests
@@ -190,21 +190,21 @@ build/android/test_runner.py instrumentation --test-apk=ContentShellTest \
--isolate-file-path content/content_shell_test_apk.isolate --release -vv
```
-ChromeShell tests:
+ChromePublic tests:
```shell
# Build the code under test
-ninja -C out/Release chrome_shell_apk
+ninja -C out/Release chrome_public_apk
# Build the tests themselves
-ninja -C out/Release chrome_shell_test_apk
+ninja -C out/Release chrome_public_test_apk
# Install the code under test
-build/android/adb_install_apk.py out/Release/apks/ChromeShell.apk
+build/android/adb_install_apk.py out/Release/apks/ChromePublic.apk
# Run the test (will automagically install the test APK)
-build/android/test_runner.py instrumentation --test-apk=ChromeShellTest \
---isolate-file-path chrome/chrome_shell_test_apk.isolate --release -vv
+build/android/test_runner.py instrumentation --test-apk=ChromePublicTest \
+--isolate-file-path chrome/chrome_public_test_apk.isolate --release -vv
```
AndroidWebView tests: