user32/tests: Cope with lack of support for color cursors.
This commit is contained in:
parent
96e7da5c55
commit
09761ee96f
@ -840,7 +840,8 @@ static void test_LoadImage(void)
|
|||||||
ok(icon_info.fIcon == FALSE, "fIcon != FALSE.\n");
|
ok(icon_info.fIcon == FALSE, "fIcon != FALSE.\n");
|
||||||
ok(icon_info.xHotspot == 1, "xHotspot is %u.\n", icon_info.xHotspot);
|
ok(icon_info.xHotspot == 1, "xHotspot is %u.\n", icon_info.xHotspot);
|
||||||
ok(icon_info.yHotspot == 1, "yHotspot is %u.\n", icon_info.yHotspot);
|
ok(icon_info.yHotspot == 1, "yHotspot is %u.\n", icon_info.yHotspot);
|
||||||
ok(icon_info.hbmColor != NULL, "No hbmColor!\n");
|
ok(icon_info.hbmColor != NULL || broken(!icon_info.hbmColor) /* no color cursor support */,
|
||||||
|
"No hbmColor!\n");
|
||||||
ok(icon_info.hbmMask != NULL, "No hbmMask!\n");
|
ok(icon_info.hbmMask != NULL, "No hbmMask!\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user