From: Francois Gouget fgouget@codeweavers.com
Wine-Bug: https://bugs.winehq.org//show_bug.cgi?id=51484 --- dlls/dmloader/tests/loader.c | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/dlls/dmloader/tests/loader.c b/dlls/dmloader/tests/loader.c index 3d68a19c331..fb92bfc8a82 100644 --- a/dlls/dmloader/tests/loader.c +++ b/dlls/dmloader/tests/loader.c @@ -102,8 +102,10 @@ static void test_directory(void) (void**)&loader); ok(hr == S_OK, "Couldn't create Loader %#lx\n", hr); hr = IDirectMusicLoader_SetSearchDirectory(loader, &GUID_DirectMusicAllTypes, empty, 0); + flaky ok(hr == S_OK, "SetSearchDirectory failed with %#lx\n", hr); hr = IDirectMusicLoader_SetSearchDirectory(loader, &GUID_DirectMusicAllTypes, empty, 0); + flaky ok(hr == S_FALSE, "SetSearchDirectory failed with %#lx\n", hr); hr = IDirectMusicLoader_ScanDirectory(loader, &CLSID_DirectMusicContainer, con, NULL); ok(hr == S_FALSE, "ScanDirectory for "con" files failed with %#lx\n", hr);