ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/tck/CyclicBarrierTest.java
(Generate patch)

Comparing jsr166/src/test/tck/CyclicBarrierTest.java (file contents):
Revision 1.14 by jsr166, Sat Nov 21 06:26:00 2009 UTC vs.
Revision 1.19 by jsr166, Sun May 15 16:56:41 2011 UTC

# Line 1 | Line 1
1   /*
2   * Written by Doug Lea with assistance from members of JCP JSR-166
3   * Expert Group and released to the public domain, as explained at
4 < * http://creativecommons.org/licenses/publicdomain
4 > * http://creativecommons.org/publicdomain/zero/1.0/
5   * Other contributors include Andrew Wright, Jeffrey Hayes,
6   * Pat Fisher, Mike Judd.
7   */
# Line 15 | Line 15 | import static java.util.concurrent.TimeU
15  
16   public class CyclicBarrierTest extends JSR166TestCase {
17      public static void main(String[] args) {
18 <        junit.textui.TestRunner.run (suite());
18 >        junit.textui.TestRunner.run(suite());
19      }
20      public static Test suite() {
21          return new TestSuite(CyclicBarrierTest.class);
# Line 120 | Line 120 | public class CyclicBarrierTest extends J
120  
121          t1.start();
122          t2.start();
123 <        Thread.sleep(SHORT_DELAY_MS);
123 >        delay(SHORT_DELAY_MS);
124          t1.interrupt();
125          t1.join();
126          t2.join();
# Line 143 | Line 143 | public class CyclicBarrierTest extends J
143  
144          t1.start();
145          t2.start();
146 <        Thread.sleep(SHORT_DELAY_MS);
146 >        delay(SHORT_DELAY_MS);
147          t1.interrupt();
148          t1.join();
149          t2.join();
# Line 152 | Line 152 | public class CyclicBarrierTest extends J
152      /**
153       * A timeout in timed await throws TimeoutException
154       */
155 <    public void testAwait3_TimeOutException() throws InterruptedException {
155 >    public void testAwait3_TimeoutException() throws InterruptedException {
156          final CyclicBarrier c = new CyclicBarrier(2);
157          Thread t = new ThreadShouldThrow(TimeoutException.class) {
158              public void realRun() throws Exception {
# Line 222 | Line 222 | public class CyclicBarrierTest extends J
222  
223          t1.start();
224          t2.start();
225 <        Thread.sleep(SHORT_DELAY_MS);
225 >        delay(SHORT_DELAY_MS);
226          c.reset();
227          t1.join();
228          t2.join();
# Line 277 | Line 277 | public class CyclicBarrierTest extends J
277  
278          t.start();
279          for (int i = 0; i < 4; i++) {
280 <            Thread.sleep(SHORT_DELAY_MS);
280 >            delay(SHORT_DELAY_MS);
281              t.interrupt();
282          }
283          done.set(true);
# Line 355 | Line 355 | public class CyclicBarrierTest extends J
355       * Reset of a barrier after timeout reinitializes it.
356       */
357      public void testResetAfterTimeout() throws Exception {
358 <        final CyclicBarrier start = new CyclicBarrier(3);
358 >        final CyclicBarrier start = new CyclicBarrier(2);
359          final CyclicBarrier barrier = new CyclicBarrier(3);
360          for (int i = 0; i < 2; i++) {
361              Thread t1 = new ThreadShouldThrow(TimeoutException.class) {
362                      public void realRun() throws Exception {
363                          start.await();
364 <                        barrier.await(MEDIUM_DELAY_MS, MILLISECONDS);
364 >                        barrier.await(SHORT_DELAY_MS, MILLISECONDS);
365                      }};
366  
367              Thread t2 = new ThreadShouldThrow(BrokenBarrierException.class) {
# Line 372 | Line 372 | public class CyclicBarrierTest extends J
372  
373              t1.start();
374              t2.start();
375            start.await();
375              t1.join();
376              t2.join();
377              assertTrue(barrier.isBroken());

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines