Module: vkd3d Branch: master Commit: eaf35c394d949c16e6694a7cefde64a83c2c36c9 URL: https://gitlab.winehq.org/wine/vkd3d/-/commit/eaf35c394d949c16e6694a7cefde64...
Author: Giovanni Mascellani gmascellani@codeweavers.com Date: Fri Oct 13 14:15:02 2023 +0200
tests: Skip test_atomic_instructions() on WARP.
Pipeline creation fails with E_INVALIDARG, atomics are likely not supported on WARP.
---
tests/d3d12.c | 6 ++++++ 1 file changed, 6 insertions(+)
diff --git a/tests/d3d12.c b/tests/d3d12.c index 02c36c43..c2a6ca92 100644 --- a/tests/d3d12.c +++ b/tests/d3d12.c @@ -23325,6 +23325,12 @@ static void test_atomic_instructions(void) {{~0u, ~0u}, { 0}, {0xffff, ~0u, 0}, {0xffff, 0, ~0u}}, };
+ if (test_options.use_warp_device) + { + skip("Broken on WARP.\n"); + return; + } + memset(&desc, 0, sizeof(desc)); desc.rt_width = 1; desc.rt_height = 1;