Commit c05dbc4b authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

devenum/tests: Remove a duplicate test.

This is tested below in test_vfw(). Signed-off-by: 's avatarZebediah Figura <z.figura12@gmail.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent ccfb4411
......@@ -37,11 +37,9 @@
DEFINE_GUID(GUID_NULL,0,0,0,0,0,0,0,0,0,0,0);
static const WCHAR friendly_name[] = {'F','r','i','e','n','d','l','y','N','a','m','e',0};
static const WCHAR fcc_handlerW[] = {'F','c','c','H','a','n','d','l','e','r',0};
static const WCHAR deviceW[] = {'@','d','e','v','i','c','e',':',0};
static const WCHAR clsidW[] = {'C','L','S','I','D',0};
static const WCHAR waveW[] = {'w','a','v','e',':',0};
static const WCHAR mrleW[] = {'m','r','l','e',0};
static const WCHAR dmoW[] = {'d','m','o',':',0};
static const WCHAR swW[] = {'s','w',':',0};
static const WCHAR cmW[] = {'c','m',':',0};
......@@ -66,7 +64,6 @@ static void test_devenum(IBindCtx *bind_ctx)
ICreateDevEnum* create_devenum;
IPropertyBag *prop_bag;
IMoniker *moniker;
BOOL have_mrle = FALSE;
GUID cat_guid, clsid;
WCHAR *displayname;
VARIANT var;
......@@ -129,17 +126,6 @@ static void test_devenum(IBindCtx *bind_ctx)
if (winetest_debug > 1)
trace(" %s %s\n", wine_dbgstr_w(displayname), wine_dbgstr_w(V_BSTR(&var)));
if (IsEqualGUID(&CLSID_VideoCompressorCategory, &cat_guid)) {
/* Test well known compressor to ensure that we really enumerate codecs */
hr = IPropertyBag_Read(prop_bag, fcc_handlerW, &var, NULL);
if (SUCCEEDED(hr)) {
ok(V_VT(&var) == VT_BSTR, "V_VT(var) = %d\n", V_VT(&var));
if(!lstrcmpW(V_BSTR(&var), mrleW))
have_mrle = TRUE;
VariantClear(&var);
}
}
hr = IMoniker_BindToObject(moniker, bind_ctx, NULL, &IID_IUnknown, NULL);
ok(hr == E_POINTER, "got %#x\n", hr);
......@@ -152,11 +138,8 @@ static void test_devenum(IBindCtx *bind_ctx)
}
ICreateDevEnum_Release(create_devenum);
/* 64-bit windows are missing mrle codec */
if(sizeof(void*) == 4)
ok(have_mrle, "mrle codec not found\n");
}
static void test_moniker_isequal(void)
{
HRESULT res;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment