gdi32/tests: Add a broken() to an always true test.

This commit is contained in:
Huw Davies 2009-02-27 11:33:12 +00:00 committed by Alexandre Julliard
parent a9c825e036
commit e270f5a89d
1 changed files with 3 additions and 1 deletions

View File

@ -1974,7 +1974,9 @@ static void test_CreateBitmap(void)
"0: %p, 1: %p, 4: %p, 5: %p, curObj1 %p, old1 %p\n",
bm, bm1, bm4, bm5, curObj1, old1);
ok(bm != bm2 && bm != bm3, "0: %p, 2: %p, 3: %p\n", bm, bm2, bm3);
ok(bm != curObj2 /* XP */ || bm == curObj2 /* Win9x */,
todo_wine
ok(bm != curObj2 || /* WinXP */
broken(bm == curObj2) /* Win9x */,
"0: %p, curObj2 %p\n", bm, curObj2);
ok(old2 == 0, "old2 %p\n", old2);