Commit f7608053 authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

gdi32/tests: Marked another win9x failure as broken.

parent bbafe938
...@@ -2197,7 +2197,9 @@ static void test_get16dibits(void) ...@@ -2197,7 +2197,9 @@ static void test_get16dibits(void)
info->bmiHeader.biCompression = BI_RGB; info->bmiHeader.biCompression = BI_RGB;
ret = GetDIBits(screen_dc, hbmp, 0, 0, NULL, info, 0); ret = GetDIBits(screen_dc, hbmp, 0, 0, NULL, info, 0);
ok(ret != 0, "GetDIBits failed got %d\n", ret); ok(ret != 0 ||
broken(ret == 0), /* win9x */
"GetDIBits failed got %d\n", ret);
for (p = ((BYTE *) info) + sizeof(info->bmiHeader); (p - ((BYTE *) info)) < info_len; p++) for (p = ((BYTE *) info) + sizeof(info->bmiHeader); (p - ((BYTE *) info)) < info_len; p++)
if (*p != '!') if (*p != '!')
......
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