Commit 3a91df11 authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

gdi32/tests: Allow broken behaviour for nt4 sp1 and sp2.

parent 6744fec6
......@@ -388,7 +388,9 @@ static void test_simple_graphics(void)
ok(ds.dsBitfields[0] == 0, "got %08x\n", ds.dsBitfields[0]);
ok(ds.dsBitfields[1] == 0, "got %08x\n", ds.dsBitfields[1]);
ok(ds.dsBitfields[2] == 0, "got %08x\n", ds.dsBitfields[2]);
ok(ds.dsBmih.biCompression == BI_RGB, "got %x\n", ds.dsBmih.biCompression);
ok(ds.dsBmih.biCompression == BI_RGB ||
broken(ds.dsBmih.biCompression == BI_BITFIELDS), /* nt4 sp1 and 2 */
"got %x\n", ds.dsBmih.biCompression);
orig_bm = SelectObject(mem_dc, dib);
......
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