3 Nov
2022
3 Nov
'22
8:47 p.m.
Rémi Bernon (@rbernon) commented about dlls/windows.gaming.ui.gamebar/tests/gamebar.c:
+ ok(ref == 2, "got ref %ld.\n", ref); + ref = IActivationFactory_Release(factory); + ok(ref == 1, "got ref %ld.\n", ref); +} + +START_TEST(gamebar) +{ + HRESULT hr; + + hr = RoInitialize(RO_INIT_MULTITHREADED); + ok(hr == S_OK, "RoInitialize failed, hr %#lx\n", hr); + + test_GameBarStatics(); + + RoUninitialize(); +} Would you mind updating the test style to match the module (or the other way if you like best, but I personally started to like spaces)?
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/1247#note_13055