Module: vkd3d Branch: master Commit: ee3c4b655589bc257a9821a766f01aad6589b367 URL: https://gitlab.winehq.org/wine/vkd3d/-/commit/ee3c4b655589bc257a9821a766f01a...
Author: Giovanni Mascellani gmascellani@codeweavers.com Date: Fri Oct 13 13:53:11 2023 +0200
tests: Skip test_get_copyable_footprints() on WARP.
There are 12025 failures with WARP. I haven't investigated them.
---
tests/d3d12.c | 6 ++++++ 1 file changed, 6 insertions(+)
diff --git a/tests/d3d12.c b/tests/d3d12.c index c58b6c28..0be155da 100644 --- a/tests/d3d12.c +++ b/tests/d3d12.c @@ -19533,6 +19533,12 @@ static void test_get_copyable_footprints(void) }, };
+ if (test_options.use_warp_device) + { + skip("Broken on WARP.\n"); + return; + } + if (!(device = create_device())) { skip("Failed to create device.\n");