Courtney Goeltzenleuchter | 539bf16 | 2014-12-08 13:17:04 -0700 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | # |
| 3 | # Run all the regression tests |
| 4 | |
Courtney Goeltzenleuchter | 9cc421e | 2015-04-08 15:36:08 -0600 | [diff] [blame^] | 5 | # vkbase tests that basic VK calls are working (don't return an error). |
| 6 | ./vkbase |
Courtney Goeltzenleuchter | 539bf16 | 2014-12-08 13:17:04 -0700 | [diff] [blame] | 7 | |
Courtney Goeltzenleuchter | 9cc421e | 2015-04-08 15:36:08 -0600 | [diff] [blame^] | 8 | # vk_blit_tests test Fill/Copy Memory, Clears, CopyMemoryToImage |
| 9 | ./vk_blit_tests |
Courtney Goeltzenleuchter | 539bf16 | 2014-12-08 13:17:04 -0700 | [diff] [blame] | 10 | |
Courtney Goeltzenleuchter | 9cc421e | 2015-04-08 15:36:08 -0600 | [diff] [blame^] | 11 | # vk_image_tests check that image can be allocated and bound. |
| 12 | ./vk_image_tests |
Courtney Goeltzenleuchter | 539bf16 | 2014-12-08 13:17:04 -0700 | [diff] [blame] | 13 | |
Courtney Goeltzenleuchter | 9cc421e | 2015-04-08 15:36:08 -0600 | [diff] [blame^] | 14 | #vk_render_tests tests a variety of features using rendered images |
Courtney Goeltzenleuchter | 539bf16 | 2014-12-08 13:17:04 -0700 | [diff] [blame] | 15 | # --compare-images will cause the test to check the resulting image against |
| 16 | # a saved "golden" image and will report an error if there is any difference |
Courtney Goeltzenleuchter | 9cc421e | 2015-04-08 15:36:08 -0600 | [diff] [blame^] | 17 | ./vk_render_tests --compare-images |