Hans Leidekker : wbemprox/tests: Test more sound device properties.

Alexandre Julliard julliard at winehq.org
Thu Oct 29 16:32:08 CDT 2020


Module: wine
Branch: master
Commit: 488ec98bf2080370d023211d4319beb79d58cc69
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=488ec98bf2080370d023211d4319beb79d58cc69

Author: Hans Leidekker <hans at codeweavers.com>
Date:   Thu Oct 29 13:15:49 2020 +0100

wbemprox/tests: Test more sound device properties.

Signed-off-by: Hans Leidekker <hans at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/wbemprox/tests/query.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/dlls/wbemprox/tests/query.c b/dlls/wbemprox/tests/query.c
index 7ba55dffdfb..191b9f6c85a 100644
--- a/dlls/wbemprox/tests/query.c
+++ b/dlls/wbemprox/tests/query.c
@@ -1745,10 +1745,13 @@ static void test_Win32_SoundDevice( IWbemServices *services )
         hr = IEnumWbemClassObject_Next( result, 10000, 1, &obj, &count );
         if (hr != S_OK) break;
 
+        check_property( obj, L"DeviceID", VT_BSTR, CIM_STRING );
+        check_property( obj, L"Manufacturer", VT_BSTR, CIM_STRING );
         check_property( obj, L"Name", VT_BSTR, CIM_STRING );
+        check_property( obj, L"PNPDeviceID", VT_BSTR, CIM_STRING );
         check_property( obj, L"ProductName", VT_BSTR, CIM_STRING );
+        check_property( obj, L"Status", VT_BSTR, CIM_STRING );
         check_property( obj, L"StatusInfo", VT_I4, CIM_UINT16 );
-        check_property( obj, L"Manufacturer", VT_BSTR, CIM_STRING );
         IWbemClassObject_Release( obj );
     }
 




More information about the wine-cvs mailing list