Commit 7c85b365 authored by Alexandre Julliard's avatar Alexandre Julliard

ntdll/tests: Relax a broken result on Windows.

parent 7163c782
......@@ -2500,7 +2500,7 @@ static void test_object_types(void)
memset( info, 0xcc, sizeof(*info) );
status = pNtQueryObject( NULL, ObjectTypesInformation, info, len, &retlen );
ok( retlen <= len + 16, "wrong len %x/%x\n", len, retlen );
ok( len == retlen || broken( retlen == len + 16 || retlen == len - 16 ), /* wow64 */
ok( len == retlen || broken( retlen >= len - 32 && retlen <= len + 32 ), /* wow64 */
"wrong len %x/%x\n", len, retlen );
ok( !status, "NtQueryObject failed %x\n", status );
if (!status)
......
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