kernel32/tests: Increase timeout for loader test.

Signed-off-by: Daniel Lehman <dlehman@esri.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Daniel Lehman 2017-07-18 08:28:11 -07:00 committed by Alexandre Julliard
parent 292450b07f
commit 9118512135
1 changed files with 2 additions and 2 deletions

View File

@ -2195,9 +2195,9 @@ static void child_process(const char *dll_name, DWORD target_offset)
}
else
{
ret = WaitForSingleObject(attached_thread[0], 1000);
ret = WaitForSingleObject(attached_thread[0], 2000);
ok(ret == WAIT_OBJECT_0, "expected WAIT_OBJECT_0, got %#x\n", ret);
ret = WaitForSingleObject(attached_thread[1], 1000);
ret = WaitForSingleObject(attached_thread[1], 2000);
ok(ret == WAIT_OBJECT_0, "expected WAIT_OBJECT_0, got %#x\n", ret);
}