[PATCH 1/3] dmsynth: Add basic tests. (try 2) (resend)

Christian Costa titan.costa at gmail.com
Fri Apr 6 06:39:02 CDT 2012


Try 2: Skip tests on platform that don't support direct music.
---
 configure.ac                   |    1 +
 dlls/dmsynth/tests/Makefile.in |    7 +++++
 dlls/dmsynth/tests/dmsynth.c   |   60 ++++++++++++++++++++++++++++++++++++++++
 3 files changed, 68 insertions(+), 0 deletions(-)
 create mode 100644 dlls/dmsynth/tests/Makefile.in
 create mode 100644 dlls/dmsynth/tests/dmsynth.c

diff --git a/configure.ac b/configure.ac
index f55b2ff..04cadfd 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2527,6 +2527,7 @@ WINE_CONFIG_TEST(dlls/dmloader/tests)
 WINE_CONFIG_DLL(dmscript)
 WINE_CONFIG_DLL(dmstyle)
 WINE_CONFIG_DLL(dmsynth)
+WINE_CONFIG_TEST(dlls/dmsynth/tests)
 WINE_CONFIG_DLL(dmusic)
 WINE_CONFIG_TEST(dlls/dmusic/tests)
 WINE_CONFIG_DLL(dmusic32,,[implib])
diff --git a/dlls/dmsynth/tests/Makefile.in b/dlls/dmsynth/tests/Makefile.in
new file mode 100644
index 0000000..a319918
--- /dev/null
+++ b/dlls/dmsynth/tests/Makefile.in
@@ -0,0 +1,7 @@
+TESTDLL   = dmsynth.dll
+IMPORTS   = oleaut32 ole32 uuid
+
+C_SRCS = \
+	dmsynth.c
+
+ at MAKE_TEST_RULES@
diff --git a/dlls/dmsynth/tests/dmsynth.c b/dlls/dmsynth/tests/dmsynth.c
new file mode 100644
index 0000000..af2b7cb
--- /dev/null
+++ b/dlls/dmsynth/tests/dmsynth.c
@@ -0,0 +1,60 @@
+/*
+ * Unit tests for dmsynth functions
+ *
+ * Copyright (C) 2012 Christian Costa
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+#define COBJMACROS
+
+#include <stdio.h>
+
+#include "wine/test.h"
+#include "uuids.h"
+#include "ole2.h"
+#include "initguid.h"
+#include "dmusics.h"
+#include "dmusici.h"
+
+static void test_dmsynth(void)
+{
+    IDirectMusicSynth *dmsynth = NULL;
+    IDirectMusicSynthSink *dmsynth_sink = NULL;
+    HRESULT hr;
+
+    hr = CoCreateInstance(&CLSID_DirectMusicSynth, NULL, CLSCTX_INPROC_SERVER, &IID_IDirectMusicSynth, (LPVOID*)&dmsynth);
+    if (hr != S_OK)
+    {
+        skip("Cannot create DirectMusicSync object (%x)\n", hr);
+        return;
+    }
+
+    hr = CoCreateInstance(&CLSID_DirectMusicSynthSink, NULL, CLSCTX_INPROC_SERVER, &IID_IDirectMusicSynthSink, (LPVOID*)&dmsynth_sink);
+    todo_wine ok(hr == S_OK, "CoCreateInstance returned: %x\n", hr);
+
+    if (dmsynth_sink)
+        IDirectMusicSynthSink_Release(dmsynth_sink);
+    IDirectMusicSynth_Release(dmsynth);
+}
+
+START_TEST(dmsynth)
+{
+    CoInitializeEx(NULL, COINIT_MULTITHREADED);
+
+    test_dmsynth();
+
+    CoUninitialize();
+}




More information about the wine-patches mailing list