Module: vkd3d Branch: master Commit: 0d4a5f18601ec357b4df169ac6604d134297da06 URL: https://gitlab.winehq.org/wine/vkd3d/-/commit/0d4a5f18601ec357b4df169ac6604d...
Author: Giovanni Mascellani gmascellani@codeweavers.com Date: Fri Oct 13 13:54:54 2023 +0200
tests: Skip test_unbounded_resource_arrays() on WARP.
Most reads on WARP are off by a few units. I haven't investigated the reason.
---
tests/d3d12.c | 6 ++++++ 1 file changed, 6 insertions(+)
diff --git a/tests/d3d12.c b/tests/d3d12.c index 9e859b4f..02c36c43 100644 --- a/tests/d3d12.c +++ b/tests/d3d12.c @@ -36063,6 +36063,12 @@ static void test_unbounded_resource_arrays(void) 0x00100556, 0x00000000, 0x01000015, 0x0100003e, };
+ if (test_options.use_warp_device) + { + skip("Broken on WARP.\n"); + return; + } + if (!init_compute_test_context(&context)) return; device = context.device;