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

Signed-off-by: Rémi Bernon <rbernon@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Rémi Bernon 2022-04-19 19:33:30 +02:00 committed by Alexandre Julliard
parent af6dd8eb0c
commit eb087788db
1 changed files with 1 additions and 1 deletions

View File

@ -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 );