8032057: Remove unneeded/obsolete -source options in concurrency tests
Reviewed-by: chegar
This commit is contained in:
parent
37ac069436
commit
30717d9de3
jdk/test/java/util/concurrent
BlockingQueue
CancelledProducerConsumerLoops.javaMultipleProducersSingleConsumerLoops.javaProducerConsumerLoops.javaSingleProducerMultipleConsumerLoops.java
ConcurrentHashMap
Exchanger
ExecutorCompletionService
FutureTask
atomic
locks
ReentrantLock
CancelledLockLoops.javaLockOncePerThreadLoops.javaSimpleReentrantLockLoops.javaTimeoutLockLoops.java
ReentrantReadWriteLock
@ -34,7 +34,6 @@
|
||||
/*
|
||||
* @test
|
||||
* @bug 4486658
|
||||
* @compile -source 1.5 CancelledProducerConsumerLoops.java
|
||||
* @run main/timeout=7000 CancelledProducerConsumerLoops
|
||||
* @summary Checks for responsiveness of blocking queues to cancellation.
|
||||
* Runs under the assumption that ITERS computations require more than
|
||||
|
@ -34,7 +34,6 @@
|
||||
/*
|
||||
* @test
|
||||
* @bug 4486658
|
||||
* @compile -source 1.5 MultipleProducersSingleConsumerLoops.java
|
||||
* @run main/timeout=3600 MultipleProducersSingleConsumerLoops
|
||||
* @summary multiple producers and single consumer using blocking queues
|
||||
*/
|
||||
|
@ -34,7 +34,6 @@
|
||||
/*
|
||||
* @test
|
||||
* @bug 4486658
|
||||
* @compile -source 1.5 ProducerConsumerLoops.java
|
||||
* @run main/timeout=3600 ProducerConsumerLoops
|
||||
* @summary multiple producers and consumers using blocking queues
|
||||
*/
|
||||
|
@ -34,7 +34,6 @@
|
||||
/*
|
||||
* @test
|
||||
* @bug 4486658
|
||||
* @compile -source 1.5 SingleProducerMultipleConsumerLoops.java
|
||||
* @run main/timeout=600 SingleProducerMultipleConsumerLoops
|
||||
* @summary check ordering for blocking queues with 1 producer and multiple consumers
|
||||
*/
|
||||
|
@ -34,7 +34,6 @@
|
||||
/*
|
||||
* @test
|
||||
* @bug 4486658
|
||||
* @compile -source 1.5 MapCheck.java
|
||||
* @run main/timeout=240 MapCheck
|
||||
* @summary Times and checks basic map operations
|
||||
*/
|
||||
|
@ -34,7 +34,6 @@
|
||||
/*
|
||||
* @test
|
||||
* @bug 4486658
|
||||
* @compile -source 1.5 MapLoops.java
|
||||
* @run main/timeout=1600 MapLoops
|
||||
* @summary Exercise multithreaded maps, by default ConcurrentHashMap.
|
||||
* Multithreaded hash table test. Each thread does a random walk
|
||||
|
@ -34,7 +34,6 @@
|
||||
/*
|
||||
* @test
|
||||
* @bug 4486658
|
||||
* @compile -source 1.5 ExchangeLoops.java
|
||||
* @run main/timeout=720 ExchangeLoops
|
||||
* @summary checks to make sure a pipeline of exchangers passes data.
|
||||
*/
|
||||
|
@ -34,7 +34,6 @@
|
||||
/*
|
||||
* @test
|
||||
* @bug 4965960
|
||||
* @compile -source 1.5 ExecutorCompletionServiceLoops.java
|
||||
* @run main/timeout=3600 ExecutorCompletionServiceLoops
|
||||
* @summary Exercise ExecutorCompletionServiceLoops
|
||||
*/
|
||||
|
@ -34,7 +34,6 @@
|
||||
/*
|
||||
* @test
|
||||
* @bug 4486658
|
||||
* @compile -source 1.5 CancelledFutureLoops.java
|
||||
* @run main/timeout=2000 CancelledFutureLoops
|
||||
* @summary Checks for responsiveness of futures to cancellation.
|
||||
* Runs under the assumption that ITERS computations require more than
|
||||
|
@ -24,7 +24,6 @@
|
||||
/*
|
||||
* @test
|
||||
* @bug 4992443 4994819
|
||||
* @compile -source 1.5 VMSupportsCS8.java
|
||||
* @run main VMSupportsCS8
|
||||
* @summary Checks that the value of VMSupportsCS8 matches system properties.
|
||||
*/
|
||||
|
@ -34,7 +34,6 @@
|
||||
/*
|
||||
* @test
|
||||
* @bug 4486658
|
||||
* @compile -source 1.5 CancelledLockLoops.java
|
||||
* @run main/timeout=2800 CancelledLockLoops
|
||||
* @summary tests lockInterruptibly.
|
||||
* Checks for responsiveness of locks to interrupts. Runs under that
|
||||
|
@ -34,7 +34,6 @@
|
||||
/*
|
||||
* @test
|
||||
* @bug 4486658
|
||||
* @compile -source 1.5 LockOncePerThreadLoops.java
|
||||
* @run main/timeout=15000 LockOncePerThreadLoops
|
||||
* @summary Checks for missed signals by locking and unlocking each of an array of locks once per thread
|
||||
*/
|
||||
|
@ -34,7 +34,6 @@
|
||||
/*
|
||||
* @test
|
||||
* @bug 4486658
|
||||
* @compile -source 1.5 SimpleReentrantLockLoops.java
|
||||
* @run main/timeout=4500 SimpleReentrantLockLoops
|
||||
* @summary multiple threads using a single lock
|
||||
*/
|
||||
|
@ -34,7 +34,6 @@
|
||||
/*
|
||||
* @test
|
||||
* @bug 4486658 5031862
|
||||
* @compile -source 1.5 TimeoutLockLoops.java
|
||||
* @run main TimeoutLockLoops
|
||||
* @summary Checks for responsiveness of locks to timeouts.
|
||||
* Runs under the assumption that ITERS computations require more than
|
||||
|
@ -34,7 +34,6 @@
|
||||
/*
|
||||
* @test
|
||||
* @bug 4486658
|
||||
* @compile -source 1.5 MapLoops.java
|
||||
* @run main/timeout=4700 MapLoops
|
||||
* @summary Exercise multithreaded maps, by default ConcurrentHashMap.
|
||||
* Multithreaded hash table test. Each thread does a random walk
|
||||
|
Loading…
x
Reference in New Issue
Block a user