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

This commit is contained in:
André Hentschel 2013-11-06 21:45:56 +01:00 committed by Alexandre Julliard
parent e22908a867
commit 15543701a7
1 changed files with 2 additions and 1 deletions

View File

@ -938,7 +938,8 @@ static void test_EnumLanguageProfiles(void)
{
found = TRUE;
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");
}
}