ci: Add a list of known validation fails

Add a Test/baseResults/validation_fails.txt file to track test results
with known validation fails. This will hopefully make it easier to spot
when new test results are added that have invalid SPIR-V.
This commit is contained in:
Arcady Goldmints-Orlov 2024-07-29 18:57:02 -04:00 committed by arcady-lunarg
parent 48154f1766
commit 11290021b7
2 changed files with 73 additions and 0 deletions

View file

@ -43,6 +43,8 @@ jobs:
run: ctest --output-on-failure --test-dir build
- name: Test (standalone)
run: cd Test && ./runtests
- name: Check known validation failure list
run: grep -l 'Validation failed' Test/baseResults/* | sort -fd | diff -u Test/baseResults/validation_fails.txt -
linux-asan:
runs-on: ubuntu-22.04