mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Beefing up testConcurrentLockAquisition
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@29273 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -326,7 +326,7 @@ public class LockDAOTest extends TestCase
|
||||
/**
|
||||
* Uses a thread lock to ensure that the lock DAO only allows locks through one at a time.
|
||||
*/
|
||||
public synchronized void testConcurrentLockAquisition() throws Exception
|
||||
public synchronized void testConcurrentLockAcquisition() throws Exception
|
||||
{
|
||||
ReentrantLock threadLock = new ReentrantLock();
|
||||
GetLockThread[] threads = new GetLockThread[5];
|
||||
@@ -338,12 +338,12 @@ public class LockDAOTest extends TestCase
|
||||
// Wait a bit and see if any encountered errors
|
||||
boolean allDone = false;
|
||||
waitLoop:
|
||||
for (int waitLoop = 0; waitLoop < 50; waitLoop++)
|
||||
for (int waitLoop = 0; waitLoop < 500; waitLoop++)
|
||||
{
|
||||
wait(1000L);
|
||||
for (int i = 0; i < threads.length; i++)
|
||||
{
|
||||
if (!threads[i].done)
|
||||
if (!threads[i].isDone())
|
||||
{
|
||||
continue waitLoop;
|
||||
}
|
||||
@@ -429,5 +429,9 @@ public class LockDAOTest extends TestCase
|
||||
}
|
||||
}
|
||||
}
|
||||
public synchronized boolean isDone()
|
||||
{
|
||||
return done;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user