Skip to content
Snippets Groups Projects
Commit b60995b1 authored by Henri Verbeet's avatar Henri Verbeet
Browse files

tests/shader_runner: Do not use skip() for shader model requirements.

Like we did before commit 067e6dee.
These skips aren't all that interesting; it's entirely intentional that
e.g. a 2.0-3.0 run wouldn't run 4.0 shaders.
parent 45d9a097
No related branches found
No related tags found
1 merge request!1333tests/shader_runner: Do not use skip() for shader model requirements.
Pipeline #36103 skipped
......@@ -1998,7 +1998,8 @@ void run_shader_tests(struct shader_runner *runner, const struct shader_runner_c
break;
case STATE_TEST:
if (test_action == TEST_ACTION_SKIP_EXECUTION)
if (test_action == TEST_ACTION_SKIP_EXECUTION
&& runner->minimum_shader_model <= runner->maximum_shader_model)
skip("Missing capabilities.\n");
break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment