OLD | NEW |
(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. |
OLD | NEW |