Skip to content
Snippets Groups Projects

tests: Report tests skipped because of missing capabilities.

Merged Francisco Casas requested to merge fcasas/vkd3d:skip_tests into master

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:

Screenshot_from_2024-08-06_17-58-53

Or like this if the VKD3D_TEST_DETAILED=1 env is set (4/4):

Screenshot_from_2024-08-06_18-02-37

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
  • -# 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.

  • Henri Verbeet approved this merge request

    approved this merge request

  • Henri Verbeet added 22 commits

    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.

    Compare with previous version

Please register or sign in to reply
Loading