7 Jun
2025
7 Jun
'25
2:10 p.m.
Nikolay Sivov (@nsivov) commented about dlls/d2d1/tests/d2d1.c:
return; }
- dxgi_device = create_device(d3d11); - ok(!!dxgi_device, "Failed to create device.\n"); + if (!(dxgi_device = create_device(d3d11))) + { + skip("Failed to create device, skipping tests.\n"); + return; + }
This works of course, but we might as well use the same init_test_context() and only use ctx.device from it. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/8238#note_105775