Conor McCarthy : vkd3d/tests: Enable on vkd3d the tests for ID3D12CommandQueue::Wait().

Alexandre Julliard julliard at winehq.org
Thu Jan 13 16:15:24 CST 2022


Module: vkd3d
Branch: master
Commit: 41230b6e763980ad02930213a11336e1358197e3
URL:    https://source.winehq.org/git/vkd3d.git/?a=commit;h=41230b6e763980ad02930213a11336e1358197e3

Author: Conor McCarthy <cmccarthy at codeweavers.com>
Date:   Tue Jan 11 00:00:49 2022 +1000

vkd3d/tests: Enable on vkd3d the tests for ID3D12CommandQueue::Wait().

The Wait() implementation was added some time ago and these tests succeed.

Signed-off-by: Conor McCarthy <cmccarthy at codeweavers.com>
Signed-off-by: Henri Verbeet <hverbeet at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 tests/d3d12.c | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/tests/d3d12.c b/tests/d3d12.c
index 3b0c424..c1956fa 100644
--- a/tests/d3d12.c
+++ b/tests/d3d12.c
@@ -33268,12 +33268,6 @@ static void test_queue_wait(void)
     check_readback_data_uint(&rb, NULL, 0xff00ff00, 0);
     release_resource_readback(&rb);
 
-    if (!vkd3d_test_platform_is_windows())
-    {
-        skip("Wait() is not implemented yet.\n"); /* FIXME */
-        goto skip_tests;
-    }
-
     /* Wait() before CPU signal */
     update_buffer_data(cb, 0, sizeof(blue), &blue);
     queue_wait(queue, fence, 2);
@@ -33349,7 +33343,6 @@ static void test_queue_wait(void)
     check_readback_data_uint(&rb, NULL, 0xff00ff00, 0);
     release_resource_readback(&rb);
 
-skip_tests:
     /* Signal() and Wait() in the same command queue */
     update_buffer_data(cb, 0, sizeof(blue), &blue);
     queue_signal(queue, fence, 7);




More information about the wine-cvs mailing list