comctl32/tests: Fix some test failures on older comctl32 versions.

This commit is contained in:
Paul Vriens 2009-10-03 14:44:34 +02:00 committed by Alexandre Julliard
parent 9826082143
commit 1dbab05364
1 changed files with 9 additions and 3 deletions

View File

@ -331,9 +331,15 @@ static void test_monthcal(void)
memset(&st, 0xcc, sizeof(st));
ok(SendMessage(hwnd, MCM_GETRANGE, 0, (LPARAM)st) == 0, "No limits should be set\n");
expect(0, st[0].wYear);
expect(0, st[0].wMonth);
expect(0, st[0].wDay);
ok(0 == st[0].wYear ||
broken(1752 == st[0].wYear), /* comctl32 <= 4.72 */
"Expected 0, got %d\n", st[0].wYear);
ok(0 == st[0].wMonth ||
broken(9 == st[0].wMonth), /* comctl32 <= 4.72 */
"Expected 0, got %d\n", st[0].wMonth);
ok(0 == st[0].wDay ||
broken(14 == st[0].wDay), /* comctl32 <= 4.72 */
"Expected 0, got %d\n", st[0].wDay);
expect(0, st[0].wDayOfWeek);
expect(0, st[0].wHour);
expect(0, st[0].wMinute);