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

Comparing jsr166/src/test/tck/LockSupportTest.java (file contents):
Revision 1.4 by dl, Thu Sep 25 11:02:41 2003 UTC vs.
Revision 1.7 by dl, Wed Jul 12 12:59:04 2006 UTC

# Line 1 | Line 1
1   /*
2 < * Written by members of JCP JSR-166 Expert Group and released to the
3 < * public domain. Use, modify, and redistribute this code in any way
4 < * without acknowledgement. Other contributors include Andrew Wright,
5 < * Jeffrey Hayes, Pat Fischer, Mike Judd.
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
5 > * Other contributors include Andrew Wright, Jeffrey Hayes,
6 > * Pat Fisher, Mike Judd.
7   */
8  
9   import junit.framework.*;
# Line 19 | Line 20 | public class LockSupportTest extends JSR
20      }
21  
22      /**
23 <     * park is released by unpark occuring after park
23 >     * park is released by unpark occurring after park
24       */
25      public void testPark() {
26          Thread t = new Thread(new Runnable() {
# Line 43 | Line 44 | public class LockSupportTest extends JSR
44      }
45  
46      /**
47 <     * park is released by unpark occuring before park
47 >     * park is released by unpark occurring before park
48       */
49      public void testPark2() {
50          Thread t = new Thread(new Runnable() {
# Line 74 | Line 75 | public class LockSupportTest extends JSR
75                  public void run() {
76                      try {
77                          LockSupport.park();
77                        threadAssertTrue(Thread.interrupted());
78                      } catch(Exception e){
79                          threadUnexpectedException();
80                      }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines