gdi32/tests: Mark win9x behaviour as broken.

This commit is contained in:
Huw Davies 2009-03-09 12:04:17 +00:00 committed by Alexandre Julliard
parent 6c62a107a2
commit 240651e0c1
1 changed files with 3 additions and 1 deletions

View File

@ -430,7 +430,9 @@ static void test_dib_bits_access( HBITMAP hdib, void *bits )
pbmi->bmiHeader.biCompression = BI_RGB;
ret = SetDIBits( hdc, hdib, 0, 16, data, pbmi, DIB_RGB_COLORS );
ok(ret == 16, "SetDIBits failed: expected 16 got %d\n", ret);
ok(ret == 16 ||
broken(ret == 0), /* win9x */
"SetDIBits failed: expected 16 got %d\n", ret);
ok(VirtualQuery(bits, &info, sizeof(info)) == sizeof(info),
"VirtualQuery failed\n");