tests: Mark a queue synchronization test as buggy on MoltenVK.

The graphics pipeline triggers an internal error in the Metal
pipeline compiler, with a completely generic error message. I have
no idea what the actual problem is.
This commit is contained in:
Giovanni Mascellani 2025-03-14 12:25:11 +01:00 committed by Henri Verbeet
parent 8f19d02501
commit 05f7f03dab
Notes: Henri Verbeet 2025-03-18 16:04:59 +01:00
Approved-by: Henri Verbeet (@hverbeet)
Merge-Request: https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/1433

View File

@ -35215,6 +35215,7 @@ static void test_graphics_compute_queue_synchronization(void)
D3D12_RESOURCE_STATE_UNORDERED_ACCESS, D3D12_RESOURCE_STATE_COPY_SOURCE);
get_buffer_readback_with_command_list(buffer, DXGI_FORMAT_R32_UINT, &rb, queue, command_list);
value = get_readback_uint(&rb.rb, 0, 0, 0);
bug_if(is_mvk_device(device))
ok(value == 24, "Got unexpected value %u.\n", value);
release_resource_readback(&rb);