tests: Report tests skipped because of missing capabilities.
And some other innocuous test patches that I decided to separate while rewriting !966 (closed) to include per-format UAV load requirements.
Tests skipped would look like this:
Or like this if the VKD3D_TEST_DETAILED=1
env is set (4/4):
Merge request reports
Activity
-# If the test passes but has [XF], we will omit details but report number of [XF] -if [ "$res" = "PASS" ] && [ "$xfcount" -gt 0 ]; then - details="$color_yellow($xfcount XF)$color_reset" +# If the test passes, we will omit details but report number of [XF] and [SK] +if [ "$res" = "PASS" ]; then + details="" + if [ "$xfcount" -gt 0 ]; then + details="$details $color_yellow($xfcount XF)$color_reset" + fi + if [ "$skcount" -gt 0 ]; then + details="$details $color_blue($skcount SK)$color_reset" + fi fi
The extra space this adds is perhaps a bit unfortunate. Not sure how much we care.
added 22 commits
-
4ac963d4...e8354ac4 - 18 commits from branch
wine:master
- 84676c37 - tests: Add missing double precission require directives.
- 2efc79bb - tests: Report tests skipped because of missing capabilities.
- 9dec7403 - tests/shader-runner: Add missing trace for wave_ops caps.
- 51abec8c - tests: Introduce VKD3D_TEST_DETAILED for the test driver.
Toggle commit list-
4ac963d4...e8354ac4 - 18 commits from branch
Please register or sign in to reply