Home | History | Annotate | Download | only in tests
      1 #!/bin/bash
      2 #
      3 # Run all the regression tests
      4 cd $(dirname "$0")
      5 
      6 # Halt on error
      7 set -e
      8 
      9 # Verify that validation checks in source match documentation
     10 ./vkvalidatelayerdoc.sh
     11 
     12 # vk_layer_validation_tests check to see that validation layers will
     13 # catch the errors that they are supposed to by intentionally doing things
     14 # that are wrong
     15 ./vk_layer_validation_tests
     16 
     17