oleaut32/tests: Skip a test on win9x.

oldstable
Paul Vriens 2008-04-24 12:05:58 +02:00 committed by Alexandre Julliard
parent 83ae4a92e5
commit 27fd7c1b3c
1 changed files with 8 additions and 0 deletions

View File

@ -431,6 +431,14 @@ static void test_VarWeekdayName(void)
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 */
for (day = 0; day <= 6; ++day)
{