Module: wine Branch: master Commit: d8c3b778a5ff680c138de27d1f4d71b088edb96a URL: https://gitlab.winehq.org/wine/wine/-/commit/d8c3b778a5ff680c138de27d1f4d71b...
Author: Henri Verbeet hverbeet@codeweavers.com Date: Thu Sep 14 19:07:35 2023 +0200
d3d11/tests: Properly mark the indexed sample position test as succeeding with the Vulkan backend.
It almost works as-is; we set "sample_shading" to FALSE when running with the Vulkan backend, which causes the "(1024 <= data && data <= 1056)" test to be applied, which fails and avoids a "Test succeeded inside todo block" result. It'll mark the tests as a todo though, while it actually succeeds.
---
dlls/d3d11/tests/d3d11.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/d3d11/tests/d3d11.c b/dlls/d3d11/tests/d3d11.c index cd36780ddcd..3bf3fa44d97 100644 --- a/dlls/d3d11/tests/d3d11.c +++ b/dlls/d3d11/tests/d3d11.c @@ -31734,7 +31734,7 @@ static void test_sample_shading(void) {&ps_sample_index, TRUE}, {&ps_samplepos, FALSE}, {&ps_samplepos_rasterizer, FALSE}, - {&ps_samplepos_indexed, !damavand, TRUE}, + {&ps_samplepos_indexed, TRUE, !damavand}, {&ps_sampleinfo, FALSE}, {&ps_sampleinfo_rasterizer, FALSE}, {&ps_sample, TRUE, TRUE, TRUE /* broken on Intel */},