April 28, 2026
10:49 a.m.
Matteo Bruni (@Mystral) commented about dlls/dsound/tests/dsound.c:
+ "IDirectSound_CreateSoundBuffer(dso2) failed: %08lx\n",rc); + if (rc!=DS_OK || primary2==NULL) + goto RELEASE1; + + /* Check whether the two IDirectSound objects share a primary buffer */ + todo_wine + ok(primary1!=primary2, + "Two IDirectSound objects should have independent primary buffers\n"); + + /* GetVolume on dso2's primary buffer should succeed */ + todo_wine + { + rc=IDirectSoundBuffer_GetVolume(primary2,&vol); + ok(rc==DS_OK, + "IDirectSoundBuffer_GetVolume(primary2) failed: %08lx\n",rc); + }
hr = IDirectSoundBuffer_GetVolume(primary2, &vol);
todo_wine ok(hr == DS_OK, "Unexpected hr %08lx\n", hr);
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/10735#note_137957