1#!/bin/bash 2# 3# Run all the regression tests 4cd $(dirname "$0") 5 6# Halt on error 7set -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