kernel32/tests: Allow a 0 removed entry count in the completion test.

This matches the ntdll:file fix.

Wine-Bug: https://bugs.winehq.org//show_bug.cgi?id=54554
This commit is contained in:
Francois Gouget 2023-09-14 12:11:28 +02:00 committed by Alexandre Julliard
parent 2830f98518
commit c63b323e22

View file

@ -5559,7 +5559,7 @@ static void test_post_completion(void)
ret = pGetQueuedCompletionStatusEx( port, entries, 2, &count, 0, FALSE );
ok(!ret, "GetQueuedCompletionStatusEx succeeded\n");
ok(GetLastError() == WAIT_TIMEOUT, "wrong error %lu\n", GetLastError());
ok(count == 1, "wrong count %lu\n", count);
ok(count <= 1, "wrong count %lu\n", count);
ret = PostQueuedCompletionStatus( port, 123, 456, &ovl );
ok(ret, "PostQueuedCompletionStatus failed: %lu\n", GetLastError());
@ -5600,14 +5600,14 @@ static void test_post_completion(void)
ret = pGetQueuedCompletionStatusEx( port, entries, 2, &count, 0, FALSE );
ok(!ret, "GetQueuedCompletionStatusEx succeeded\n");
ok(GetLastError() == WAIT_TIMEOUT, "wrong error %lu\n", GetLastError());
ok(count == 1, "wrong count %lu\n", count);
ok(count <= 1, "wrong count %lu\n", count);
ok(!user_apc_ran, "user APC should not have run\n");
ret = pGetQueuedCompletionStatusEx( port, entries, 2, &count, 0, TRUE );
ok(!ret || broken(ret) /* Vista */, "GetQueuedCompletionStatusEx succeeded\n");
if (!ret)
ok(GetLastError() == WAIT_IO_COMPLETION, "wrong error %lu\n", GetLastError());
ok(count == 1, "wrong count %lu\n", count);
ok(count <= 1, "wrong count %lu\n", count);
ok(user_apc_ran, "user APC should have run\n");
user_apc_ran = FALSE;