Commit 240651e0 authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

gdi32/tests: Mark win9x behaviour as broken.

parent 6c62a107
......@@ -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");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment