summaryrefslogtreecommitdiff
path: root/platform/android/tests/docs/CORE_TESTS.md
diff options
context:
space:
mode:
Diffstat (limited to 'platform/android/tests/docs/CORE_TESTS.md')
-rw-r--r--platform/android/tests/docs/CORE_TESTS.md21
1 files changed, 0 insertions, 21 deletions
diff --git a/platform/android/tests/docs/CORE_TESTS.md b/platform/android/tests/docs/CORE_TESTS.md
deleted file mode 100644
index b9cd7bcc76..0000000000
--- a/platform/android/tests/docs/CORE_TESTS.md
+++ /dev/null
@@ -1,21 +0,0 @@
-# Core Tests
-
-Core tests run the [unit tests](../../../../test) written for the core rendering component of Mapbox GL.
-
-## Running the tests
-
-To run the tests, connect a device to your computer, or launch a virtual device. Then run
-
-```
-$ make run-android-core-test-XXX
-```
-
-with `XXX` being the architecture of the device (one of `arm-v5`, `arm-v7`, `arm-v8`, `x86`, `x86-64`, or `mips`). This command first builds the library, creates a test program, zips up the assets required for the unit tests, deploys it on the device, runs the test and unpacks the results again on your computer.
-
-You can also run individual tests by specifying the name like this:
-
-```
-$ make run-android-core-test-XXX-TileCover.*
-```
-
-Everything after the last dash is passed as the [`--gtest_filter` argument](https://github.com/google/googletest/blob/master/googletest/docs/AdvancedGuide.md#running-a-subset-of-the-tests) to the Google Test binary.