Commit eb087788 authored by Rémi Bernon's avatar Rémi Bernon Committed by Alexandre Julliard

kernel32/tests: Reduce the number of GlobalAlloc size tests.

parent af6dd8eb
...@@ -998,7 +998,7 @@ static void test_GlobalAlloc(void) ...@@ -998,7 +998,7 @@ static void test_GlobalAlloc(void)
mem = GlobalFree( mem ); mem = GlobalFree( mem );
ok( !mem, "GlobalFree failed, error %lu\n", GetLastError() ); ok( !mem, "GlobalFree failed, error %lu\n", GetLastError() );
for (alloc_size = 1; alloc_size < 0x10000000; alloc_size <<= 1) for (alloc_size = 1; alloc_size < 0x10000000; alloc_size <<= 5)
{ {
winetest_push_context( "size %#Ix", alloc_size ); winetest_push_context( "size %#Ix", alloc_size );
......
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