[KMTESTS:KE]

- Increase timeout in KeGuardedMutex test to avoid flakiness

svn path=/trunk/; revision=64002
This commit is contained in:
Thomas Faber 2014-08-31 10:27:35 +00:00
parent 6100631ce9
commit 5c1f39d5c8

View file

@ -240,7 +240,7 @@ TestGuardedMutexConcurrent(
THREAD_DATA ThreadDataTry;
PKTHREAD Thread = KeGetCurrentThread();
LARGE_INTEGER Timeout;
Timeout.QuadPart = -10 * 1000 * 10; /* 10 ms */
Timeout.QuadPart = -50 * 1000 * 10; /* 50 ms */
InitThreadData(&ThreadData, Mutex, KeAcquireGuardedMutex, NULL, KeReleaseGuardedMutex);
InitThreadData(&ThreadData2, Mutex, KeAcquireGuardedMutex, NULL, KeReleaseGuardedMutex);