Commit 15543701 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

msctf/tests: Mark GUID_NULL as result broken for Win8.

parent e22908a8
...@@ -938,7 +938,8 @@ static void test_EnumLanguageProfiles(void) ...@@ -938,7 +938,8 @@ static void test_EnumLanguageProfiles(void)
{ {
found = TRUE; found = TRUE;
ok(profile.langid == gLangid, "LangId Incorrect\n"); ok(profile.langid == gLangid, "LangId Incorrect\n");
ok(IsEqualGUID(&profile.catid,&GUID_TFCAT_TIP_KEYBOARD), "CatId Incorrect\n"); ok(IsEqualGUID(&profile.catid,&GUID_TFCAT_TIP_KEYBOARD) ||
broken(IsEqualGUID(&profile.catid,&GUID_NULL) /* Win8 */), "CatId Incorrect\n");
ok(IsEqualGUID(&profile.guidProfile,&CLSID_FakeService), "guidProfile Incorrect\n"); ok(IsEqualGUID(&profile.guidProfile,&CLSID_FakeService), "guidProfile Incorrect\n");
} }
} }
......
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