[GDI32_APITEST] Enable SetDIBitsToDevice tests that work now (#5402)

Remove outdated 'todo_ros' qualifiers. ROSTESTS-384
This commit is contained in:
Doug Lyons 2023-07-08 16:30:04 -05:00 committed by GitHub
parent ed4e3f5611
commit ebb7c0524b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -129,7 +129,7 @@ Test_SetDIBitsToDevice_Params()
(BYTE*)aulBits + 1, // lpvBits,
pbmi,
DIB_RGB_COLORS);
todo_ros ok_dec(ret, 0);
ok_dec(ret, 0);
ok_err(0xdeadc0de);
/* test unaligned illegal buffer */
@ -146,7 +146,7 @@ Test_SetDIBitsToDevice_Params()
(BYTE*)0x7fffffff, // lpvBits,
pbmi,
DIB_RGB_COLORS);
todo_ros ok_dec(ret, 0);
ok_dec(ret, 0);
ok_err(0xdeadc0de);
/* Test negative XDest */
@ -248,7 +248,7 @@ Test_SetDIBitsToDevice_Params()
aulBits, // lpvBits,
pbmi,
DIB_RGB_COLORS);
todo_ros ok_dec(ret, 7);
ok_dec(ret, 7);
ok_err(0xdeadc0de);
/* Test large cScanlines */
@ -265,7 +265,7 @@ Test_SetDIBitsToDevice_Params()
aulBits, // lpvBits,
pbmi,
DIB_RGB_COLORS);
todo_ros ok_dec(ret, 0);
ok_dec(ret, 0);
ok_err(0xdeadc0de);
/* Test uStartScan and cScanLines larger than the DIB */
@ -542,8 +542,8 @@ Test_SetDIBitsToDevice()
DIB_RGB_COLORS);
ok_dec(ret, 1);
todo_ros ok_hex((*gpDIB32)[0][0], 0x00000000);
todo_ros ok_hex((*gpDIB32)[0][1], 0x00000000);
ok_hex((*gpDIB32)[0][0], 0x00000000);
ok_hex((*gpDIB32)[0][1], 0x00000000);
ok_hex((*gpDIB32)[0][2], 0x00000000);
ok_hex((*gpDIB32)[0][3], 0x00000000);
todo_ros ok_hex((*gpDIB32)[1][0], 0x11000000);