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