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

Unified Diff: blimp/docs/test.md

Issue 2323993003: Update blimp documentation to refer to Chrome (Closed)
Patch Set: rebased Created 4 years, 3 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 | « blimp/docs/running.md ('k') | blimp/tools/client_engine_integration.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/docs/test.md
diff --git a/blimp/docs/test.md b/blimp/docs/test.md
index 4d172784ed042ce682060d0b3aebbaffb35499b7..712cff25b283d067dc04d013d52c958284640dc7 100644
--- a/blimp/docs/test.md
+++ b/blimp/docs/test.md
@@ -9,7 +9,7 @@ GN setup.
Run the following command to build the Android tests:
```bash
-ninja -C out-android/Debug blimp_tests
+ninja -C out-android/Debug blimp chrome_public_test_apk
```
### Running the Java instrumentation tests
@@ -20,19 +20,42 @@ Install the Blimp APK with the following:
./build/android/adb_install_apk.py $(PRODUCT_DIR)/apks/Blimp.apk
```
-Run the Java instrumentation tests (with an optional test filter) with the
-following:
+Install the Chrome Public APK with the following:
+
+```bash
+./build/android/adb_install_apk.py $(PRODUCT_DIR)/apks/ChromePublic.apk
+```
+
+Run the Blimp Java instrumentation tests (with an optional test filter) with
+the following:
```bash
$(PRODUCT_DIR)/bin/run_blimp_test_apk [ -f DummyTest#* ]
```
+Run the Chrome Public Java instrumentation tests (with an optional test filter)
+with the following:
+
+```bash
+$(PRODUCT_DIR)/bin/run_chrome_public_test_apk [ -f DummyTest#* ]
+```
+
### Testing on Linux
Run the following command to build the Linux tests:
```bash
-ninja -C out-linux/Debug blimp_tests
+ninja -C out-linux/Debug blimp
```
-There are no tests that run on Linux yet.
+Run the following command to run the Blimp Linux unit tests:
+
+```bash
+./out-linux/Debug/blimp_unittests
+```
+
+Run the following command to run the Blimp Linux browser tests:
+
+```bash
+./out-linux/Debug/blimp_browsertests
+```
« no previous file with comments | « blimp/docs/running.md ('k') | blimp/tools/client_engine_integration.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698