Module: wine Branch: master Commit: 520a2830d5319185021efc973f57f603d15968f6 URL: http://source.winehq.org/git/wine.git/?a=commit;h=520a2830d5319185021efc973f...
Author: Maarten Lankhorst m.b.lankhorst@gmail.com Date: Sun Feb 21 11:53:38 2010 +0100
mmdevapi: Add todo_wine in dependency test.
---
dlls/mmdevapi/tests/dependency.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/mmdevapi/tests/dependency.c b/dlls/mmdevapi/tests/dependency.c index 0d60cb2..23c3614 100644 --- a/dlls/mmdevapi/tests/dependency.c +++ b/dlls/mmdevapi/tests/dependency.c @@ -72,7 +72,7 @@ START_TEST(dependency) ok(!GetModuleHandle("dsound.dll"), "dsound.dll was already loaded!\n");
hr = IMMDevice_Activate(dev, &IID_IDirectSound8, CLSCTX_INPROC_SERVER, NULL, (void**)&ds8); - ok(hr == S_OK, "Activating ds8 interface failed: 0x%08x\n", hr); + todo_wine ok(hr == S_OK, "Activating ds8 interface failed: 0x%08x\n", hr); if (hr == S_OK) { ok(GetModuleHandle("dsound.dll") != NULL, "dsound.dll not loaded!\n");