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

Comparing jsr166/src/test/tck/ReentrantReadWriteLockTest.java (file contents):
Revision 1.37 by jsr166, Sat Nov 21 10:25:05 2009 UTC vs.
Revision 1.38 by jsr166, Sat Nov 21 21:59:50 2009 UTC

# Line 215 | Line 215 | public class ReentrantReadWriteLockTest
215          lock.writeLock().lock();
216          Thread t = new Thread(new CheckedInterruptedRunnable() {
217              public void realRun() throws InterruptedException {
218 <                lock.writeLock().tryLock(1000,MILLISECONDS);
218 >                lock.writeLock().tryLock(SMALL_DELAY_MS, MILLISECONDS);
219              }});
220  
221          t.start();
222 +        Thread.sleep(SHORT_DELAY_MS);
223          t.interrupt();
224          lock.writeLock().unlock();
225          t.join();

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines