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:
parent
292450b07f
commit
9118512135
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue