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

Comparing jsr166/src/test/tck/ForkJoinTaskTest.java (file contents):
Revision 1.43 by dl, Mon Oct 5 23:32:07 2015 UTC vs.
Revision 1.44 by jsr166, Tue Oct 6 00:36:55 2015 UTC

# Line 96 | Line 96 | public class ForkJoinTaskTest extends JS
96  
97          {
98              Thread.currentThread().interrupt();
99 <            long t0 = System.nanoTime();
99 >            long startTime = System.nanoTime();
100              assertSame(expected, a.join());
101 <            assertTrue(millisElapsedSince(t0) < SMALL_DELAY_MS);
101 >            assertTrue(millisElapsedSince(startTime) < SMALL_DELAY_MS);
102              Thread.interrupted();
103          }
104  
105          {
106              Thread.currentThread().interrupt();
107 <            long t0 = System.nanoTime();
107 >            long startTime = System.nanoTime();
108              a.quietlyJoin();        // should be no-op
109 <            assertTrue(millisElapsedSince(t0) < SMALL_DELAY_MS);
109 >            assertTrue(millisElapsedSince(startTime) < SMALL_DELAY_MS);
110              Thread.interrupted();
111          }
112  
# Line 139 | Line 139 | public class ForkJoinTaskTest extends JS
139          Thread.interrupted();
140  
141          {
142 <            long t0 = System.nanoTime();
142 >            long startTime = System.nanoTime();
143              a.quietlyJoin();        // should be no-op
144 <            assertTrue(millisElapsedSince(t0) < SMALL_DELAY_MS);
144 >            assertTrue(millisElapsedSince(startTime) < SMALL_DELAY_MS);
145          }
146  
147          try {
# Line 177 | Line 177 | public class ForkJoinTaskTest extends JS
177          Thread.interrupted();
178  
179          {
180 <            long t0 = System.nanoTime();
180 >            long startTime = System.nanoTime();
181              a.quietlyJoin();        // should be no-op
182 <            assertTrue(millisElapsedSince(t0) < SMALL_DELAY_MS);
182 >            assertTrue(millisElapsedSince(startTime) < SMALL_DELAY_MS);
183          }
184  
185          try {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines