Commit 56019a4d authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

kernel32/tests: Fix test for win8 heap layout.

parent c1bf61e5
......@@ -1127,7 +1127,7 @@ static void test_child_heap( const char *arg )
if (!(heap->flags & HEAP_GROWABLE) || heap->pattern == 0xffeeffee) /* vista layout */
{
ok( heap->flags == 0, "%s: got heap flags %08x expected 0\n", arg, heap->flags );
ok( (heap->flags & ~HEAP_GROWABLE) == 0, "%s: got heap flags %08x\n", arg, heap->flags );
}
else if (heap->pattern == 0xeeeeeeee && heap->flags == 0xeeeeeeee)
{
......
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