6772009: java/util/concurrent/locks/ReentrantLock/CancelledLockLoops.java test failed with 'Completed != 2'

Reviewed-by: martin, dholmes
This commit is contained in:
Srikalyan Chandrashekar 2014-01-08 13:08:20 +00:00 committed by Alan Bateman
parent 97d83a1cd7
commit b82ed208c9
2 changed files with 3 additions and 9 deletions
jdk/test
ProblemList.txt
java/util/concurrent/locks/ReentrantLock

@ -282,7 +282,4 @@ tools/launcher/FXLauncherTest.java linux-all
# jdk_util
# Filed 6772009
java/util/concurrent/locks/ReentrantLock/CancelledLockLoops.java generic-all
############################################################################

@ -49,14 +49,11 @@ import java.util.*;
public final class CancelledLockLoops {
static final Random rng = new Random();
static boolean print = false;
static final int ITERS = 1000000;
static final int ITERS = 5000000;
static final long TIMEOUT = 100;
public static void main(String[] args) throws Exception {
int maxThreads = 5;
if (args.length > 0)
maxThreads = Integer.parseInt(args[0]);
int maxThreads = (args.length > 0) ? Integer.parseInt(args[0]) : 5;
print = true;
for (int i = 2; i <= maxThreads; i += (i+1) >>> 1) {
@ -90,7 +87,7 @@ public final class CancelledLockLoops {
threads[i] = new Thread(this);
for (int i = 0; i < threads.length; ++i)
threads[i].start();
Thread[] cancels = (Thread[]) (threads.clone());
Thread[] cancels = threads.clone();
Collections.shuffle(Arrays.asList(cancels), rng);
barrier.await();
Thread.sleep(TIMEOUT);