This is a followup to commit d78cbe84e5f0000c6523c4b997de476b12d929b6.
Sorry, did not notice this earlier.
The kernel32_test.exe links agains msvcrt.dll directly, but also via user32.dll to ucrtbase.dll, therefore now one call less to HeapCreate.
From: Bernhard Übelacker bernhardu@mailbox.org
This is a followup to commit d78cbe84e5f0000c6523c4b997de476b12d929b6. --- dlls/kernel32/tests/heap.c | 1 - 1 file changed, 1 deletion(-)
diff --git a/dlls/kernel32/tests/heap.c b/dlls/kernel32/tests/heap.c index d05eac33174..743e89fe3dd 100644 --- a/dlls/kernel32/tests/heap.c +++ b/dlls/kernel32/tests/heap.c @@ -217,7 +217,6 @@ static void test_HeapCreate(void) count = GetProcessHeaps( ARRAY_SIZE(heaps), heaps ); ok( count == heap_count + 2, "GetProcessHeaps returned %lu\n", count ); ok( heaps[0] == GetProcessHeap(), "got wrong heap\n" ); - todo_wine ok( heaps[heap_count + 0] == heap, "got wrong heap\n" ); todo_wine ok( heaps[heap_count + 1] == heap1, "got wrong heap\n" );
Can we make it so that this test does not depend at all on what we are linking to?