README.md
1#libvulkan_test
2
3This binary contains the unit tests for testing libvulkan (The Vulkan Loader).
4
5These tests rely on the underlying GPU driver to be able to successfully create a valid
6swapchain. These tests are design to run on an Android emulator to give us a consistent GPU
7driver to test against. YMMV when running this on a physical device with an arbitrary GPU
8driver.
9
10To run these tests run:
11```
12atest libvulkan_test
13```
14
15If using an acloud device the full command list for the root of a freshly cloned repo would be:
16```
17source build/envsetup.sh
18lunch aosp_cf_x86_64_phone-trunk_staging-eng
19m
20acloud create --local-image
21atest libvulkan_test
22```
23
24
25