https://git.reactos.org/?p=reactos.git;a=commitdiff;h=ebb7c0524b4be0fd858857...
commit ebb7c0524b4be0fd858857ff8043f34856cc1122 Author: Doug Lyons douglyons@douglyons.com AuthorDate: Sat Jul 8 16:30:04 2023 -0500 Commit: GitHub noreply@github.com CommitDate: Sun Jul 9 00:30:04 2023 +0300
[GDI32_APITEST] Enable SetDIBitsToDevice tests that work now (#5402)
Remove outdated 'todo_ros' qualifiers. ROSTESTS-384 --- modules/rostests/apitests/gdi32/SetDIBitsToDevice.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/modules/rostests/apitests/gdi32/SetDIBitsToDevice.c b/modules/rostests/apitests/gdi32/SetDIBitsToDevice.c index 6e35b0d0afe..1df511d51d1 100644 --- a/modules/rostests/apitests/gdi32/SetDIBitsToDevice.c +++ b/modules/rostests/apitests/gdi32/SetDIBitsToDevice.c @@ -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);