kernel32/tests: Increase time interval that WriteFile could spend for an overlapped IO write.

This commit is contained in:
Dmitry Timoshkov 2013-08-28 17:55:02 +09:00 committed by Alexandre Julliard
parent c7d27e18e5
commit 723d22f6aa
1 changed files with 1 additions and 1 deletions

View File

@ -832,7 +832,7 @@ todo_wine
ok(!res && GetLastError() == ERROR_IO_PENDING, "WriteFile returned %d, error %d\n", res, GetLastError());
todo_wine
ok(!bytes, "expected 0, got %u\n", bytes);
ok(after - before == 0, "WriteFile took %d ms to write %d Bytes at %d Baud\n",
ok(after - before < 30, "WriteFile took %d ms to write %d Bytes at %d Baud\n",
after - before, bytes, baud);
/* don't wait for WriteFile completion */