[KERNEL32_WINETEST]

sync kernel32_winetest to wine 1.1.40

svn path=/trunk/; revision=45938
This commit is contained in:
Christoph von Wittich 2010-03-06 13:36:22 +00:00
parent a609bd9f70
commit ad6f164929
5 changed files with 136 additions and 6 deletions

View file

@ -709,6 +709,7 @@ static void test_message_from_hmodule(void)
ok(ret == 0, "FormatMessageA returned %u instead of 0\n", ret);
ok(error == ERROR_RESOURCE_LANG_NOT_FOUND ||
error == ERROR_MR_MID_NOT_FOUND ||
error == ERROR_MUI_FILE_NOT_FOUND ||
error == ERROR_MUI_FILE_NOT_LOADED,
"last error %u\n", error);
@ -719,7 +720,8 @@ static void test_message_from_hmodule(void)
ok(ret == 0, "FormatMessageA returned %u instead of 0\n", ret);
ok(error == ERROR_RESOURCE_LANG_NOT_FOUND ||
error == ERROR_MR_MID_NOT_FOUND ||
error == ERROR_MUI_FILE_NOT_FOUND,
error == ERROR_MUI_FILE_NOT_FOUND ||
error == ERROR_MUI_FILE_NOT_LOADED,
"last error %u\n", error);
}