Commit 27fd7c1b authored by Paul Vriens's avatar Paul Vriens Committed by Alexandre Julliard

oleaut32/tests: Skip a test on win9x.

parent 83ae4a92
...@@ -431,6 +431,14 @@ static void test_VarWeekdayName(void) ...@@ -431,6 +431,14 @@ static void test_VarWeekdayName(void)
CHECKPTR(VarWeekdayName); CHECKPTR(VarWeekdayName);
SetLastError(0xdeadbeef);
GetLocaleInfoW(LOCALE_USER_DEFAULT, 0, NULL, 0);
if (GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
{
skip("GetLocaleInfoW is not implemented\n");
return;
}
/* Initialize days' names */ /* Initialize days' names */
for (day = 0; day <= 6; ++day) for (day = 0; day <= 6; ++day)
{ {
......
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