You've already forked wine-staging
mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2025-09-12 18:50:20 -07:00
Added patch to fix test failure in dmloader tests.
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
From dabf89ee29066b7a133ca2fb1e5c05a8100a0365 Mon Sep 17 00:00:00 2001
|
||||
From: Sebastian Lackner <sebastian@fds-team.de>
|
||||
Date: Mon, 1 May 2017 19:49:41 +0200
|
||||
Subject: dmloader/tests: Fix test failures.
|
||||
|
||||
---
|
||||
dlls/dmloader/tests/loader.c | 6 +++---
|
||||
1 file changed, 3 insertions(+), 3 deletions(-)
|
||||
|
||||
diff --git a/dlls/dmloader/tests/loader.c b/dlls/dmloader/tests/loader.c
|
||||
index 6b2ee3ad93..1735994088 100644
|
||||
--- a/dlls/dmloader/tests/loader.c
|
||||
+++ b/dlls/dmloader/tests/loader.c
|
||||
@@ -66,11 +66,11 @@ static void test_directory(void)
|
||||
/* Two consecutive SetSearchDirectory with the same path */
|
||||
GetTempPathW(ARRAY_SIZE(path), path);
|
||||
hr = IDirectMusicLoader_SetSearchDirectory(loader, &GUID_DirectMusicAllTypes, path, 0);
|
||||
- todo_wine ok(hr == S_OK, "SetSearchDirectory failed with %#x\n", hr);
|
||||
+ ok(hr == S_OK, "SetSearchDirectory failed with %#x\n", hr);
|
||||
hr = IDirectMusicLoader_SetSearchDirectory(loader, &GUID_DirectMusicAllTypes, path, 0);
|
||||
- ok(hr == S_FALSE, "Second SetSearchDirectory failed with %#x\n", hr);
|
||||
+ todo_wine ok(hr == S_FALSE, "Second SetSearchDirectory failed with %#x\n", hr);
|
||||
hr = IDirectMusicLoader_SetSearchDirectory(loader, &CLSID_DirectSoundWave, path, 0);
|
||||
- ok(hr == S_OK, "SetSearchDirectory failed with %#x\n", hr);
|
||||
+ todo_wine ok(hr == S_OK, "SetSearchDirectory failed with %#x\n", hr);
|
||||
hr = IDirectMusicLoader_SetSearchDirectory(loader, &CLSID_DirectSoundWave, path, 0);
|
||||
ok(hr == S_FALSE, "Second SetSearchDirectory failed with %#x\n", hr);
|
||||
|
||||
--
|
||||
2.12.2
|
||||
|
Reference in New Issue
Block a user