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

Side by Side Diff: blimp/docs/test.md

Issue 1365823002: Add basic test suite for Blimp (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@blimp_strings
Patch Set: Added top level test target Created 5 years, 2 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 unified diff | Download patch
OLDNEW
(Empty)
1 # Testing
2
3 Blimp only supports building using [GN](../../tools/gn/README.md), and only
4 supports building for Android and Linux. See [building](build.md) for general
5 GN setup.
6
7 ## Testing on Android
8
9 Run the following command to build the Android tests:
10
11 ```bash
12 ninja -C out-android/Debug blimp_tests
13 ```
14
15 ### Running the Java instrumentation tests
16
17 Install the Blimp APK with the following:
18
19 ```bash
20 ./build/android/adb_install_apk.py $(PRODUCT_DIR)/apks/Blimp.apk
21 ```
22
23 Run the Java instrumentation tests (with an optional test filter) with the
24 following:
25
26 ```bash
27 $(PRODUCT_DIR)/bin/run_blimp_test_apk [ -f DummyTest#* ]
28 ```
29
30 ### Testing on Linux
31
32 Run the following command to build the Linux tests:
33
34 ```bash
35 ninja -C out-linux/Debug blimp_tests
36 ```
37
38 There are no tests that run on Linux yet.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698