kernel32/tests: Update trace message to report actually used timeout value.

oldstable
Dmitry Timoshkov 2013-10-28 17:27:57 +09:00 committed by Alexandre Julliard
parent 32f56af204
commit d97a36c51f
1 changed files with 1 additions and 1 deletions

View File

@ -882,7 +882,7 @@ static void test_waittxempty(void)
CloseHandle(ovl_wait.hEvent);
timediff = after - before;
trace("WaitCommEvent for EV_TXEMPTY took %d ms (timeout %d)\n", timediff, TIMEOUT);
trace("WaitCommEvent for EV_TXEMPTY took %d ms (timeout 1500)\n", timediff);
ok(timediff < 1200, "WaitCommEvent used %d ms for waiting\n", timediff);
res = WaitForSingleObject(ovl_write.hEvent, 0);