mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 21:21:33 +00:00
[KMTEST:TcpIp] Use 10 second timeout value instead of INFINITE (#5586)
* [KMTEST:TcpIp] Use 10 second timeout value instead of INFINITE On x64 the test sometimes fails to connect and then times out on the testbot, causing the system to be rebooted. Co-authored-by: Stanislav Motylkov <x86corez@gmail.com>
This commit is contained in:
parent
3a0b53386c
commit
e7cb6f4920
1 changed files with 2 additions and 1 deletions
|
@ -113,7 +113,8 @@ START_TEST(TcpIpConnect)
|
|||
Error = KmtSendToDriver(IOCTL_TEST_CONNECT);
|
||||
ok_eq_ulong(Error, ERROR_SUCCESS);
|
||||
|
||||
WaitForSingleObject(AcceptThread, INFINITE);
|
||||
Error = WaitForSingleObject(AcceptThread, 10 * 1000);
|
||||
ok(Error == WAIT_OBJECT_0, "AcceptThread timed out\n");
|
||||
|
||||
UnloadTcpIpTestDriver();
|
||||
|
||||
|
|
Loading…
Reference in a new issue