| OLD | NEW |
| 1 # Testing | 1 # Testing |
| 2 | 2 |
| 3 Blimp only supports building using [GN](../../tools/gn/README.md), and only | 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 | 4 supports building for Android and Linux. See [building](build.md) for general |
| 5 GN setup. | 5 GN setup. |
| 6 | 6 |
| 7 ## Testing on Android | 7 ## Testing on Android |
| 8 | 8 |
| 9 Run the following command to build the Android tests: | 9 Run the following command to build the Android tests: |
| 10 | 10 |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 | 46 |
| 47 ```bash | 47 ```bash |
| 48 ninja -C out-linux/Debug blimp | 48 ninja -C out-linux/Debug blimp |
| 49 ``` | 49 ``` |
| 50 | 50 |
| 51 Run the following command to run the Blimp Linux unit tests: | 51 Run the following command to run the Blimp Linux unit tests: |
| 52 | 52 |
| 53 ```bash | 53 ```bash |
| 54 ./out-linux/Debug/blimp_unittests | 54 ./out-linux/Debug/blimp_unittests |
| 55 ``` | 55 ``` |
| 56 | |
| 57 Run the following command to run the Blimp Linux browser tests: | |
| 58 | |
| 59 ```bash | |
| 60 ./out-linux/Debug/blimp_browsertests | |
| 61 ``` | |
| OLD | NEW |