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

Comparing jsr166/src/test/tck/AtomicStampedReferenceTest.java (file contents):
Revision 1.20 by jsr166, Fri Jun 10 20:17:11 2011 UTC vs.
Revision 1.22 by jsr166, Wed Dec 31 19:21:20 2014 UTC

# Line 6 | Line 6
6   * Pat Fisher, Mike Judd.
7   */
8  
9 import junit.framework.*;
9   import java.util.concurrent.atomic.AtomicStampedReference;
10  
11 + import junit.framework.Test;
12 + import junit.framework.TestSuite;
13 +
14   public class AtomicStampedReferenceTest extends JSR166TestCase {
15      public static void main(String[] args) {
16          junit.textui.TestRunner.run(suite());
# Line 139 | Line 141 | public class AtomicStampedReferenceTest
141          assertEquals(0, ai.getStamp());
142          assertEquals(0, mark[0]);
143  
144 <        while (!ai.weakCompareAndSet(one, two, 0, 0));
144 >        do {} while (!ai.weakCompareAndSet(one, two, 0, 0));
145          assertSame(two, ai.get(mark));
146          assertEquals(0, mark[0]);
147  
148 <        while (!ai.weakCompareAndSet(two, m3, 0, 1));
148 >        do {} while (!ai.weakCompareAndSet(two, m3, 0, 1));
149          assertSame(m3, ai.get(mark));
150          assertEquals(1, mark[0]);
151      }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines