comctl32/tests: Don't accept Win95 behavior.

This commit is contained in:
Michael Stefaniuc 2011-09-27 10:25:00 +02:00 committed by Alexandre Julliard
parent af27b03967
commit d8213b468a
1 changed files with 4 additions and 12 deletions
dlls/comctl32/tests

View File

@ -771,18 +771,10 @@ static void check_ilhead_data(const char *ilh_data, INT cx, INT cy, INT cur, INT
ok(ilh->cy == cy, "wrong cy %d (expected %d)\n", ilh->cy, cy);
ok(ilh->bkcolor == CLR_NONE, "wrong bkcolor %x\n", ilh->bkcolor);
ok(ilh->flags == ILC_COLOR24, "wrong flags %04x\n", ilh->flags);
ok(ilh->ovls[0] == -1 ||
ilh->ovls[0] == 0, /* win95 */
"wrong ovls[0] %04x\n", ilh->ovls[0]);
ok(ilh->ovls[1] == -1 ||
ilh->ovls[1] == 0, /* win95 */
"wrong ovls[1] %04x\n", ilh->ovls[1]);
ok(ilh->ovls[2] == -1 ||
ilh->ovls[2] == 0, /* win95 */
"wrong ovls[2] %04x\n", ilh->ovls[2]);
ok(ilh->ovls[3] == -1 ||
ilh->ovls[3] == 0, /* win95 */
"wrong ovls[3] %04x\n", ilh->ovls[3]);
ok(ilh->ovls[0] == -1, "wrong ovls[0] %04x\n", ilh->ovls[0]);
ok(ilh->ovls[1] == -1, "wrong ovls[1] %04x\n", ilh->ovls[1]);
ok(ilh->ovls[2] == -1, "wrong ovls[2] %04x\n", ilh->ovls[2]);
ok(ilh->ovls[3] == -1, "wrong ovls[3] %04x\n", ilh->ovls[3]);
}
static HBITMAP create_bitmap(INT cx, INT cy, COLORREF color, const char *comment)