Committed by
Gerrit Code Review
Ignoring atomix unit tests until the spinning issue is debugged
Change-Id: Ib78d41caa0c54b71490b76d46d8b397a94d010e0
Showing
3 changed files
with
6 additions
and
0 deletions
| ... | @@ -24,6 +24,7 @@ import java.util.List; | ... | @@ -24,6 +24,7 @@ import java.util.List; |
| 24 | import java.util.concurrent.CompletionException; | 24 | import java.util.concurrent.CompletionException; |
| 25 | import java.util.stream.Collectors; | 25 | import java.util.stream.Collectors; |
| 26 | 26 | ||
| 27 | +import org.junit.Ignore; | ||
| 27 | import org.junit.Test; | 28 | import org.junit.Test; |
| 28 | import org.onlab.util.Tools; | 29 | import org.onlab.util.Tools; |
| 29 | import org.onosproject.store.service.MapEvent; | 30 | import org.onosproject.store.service.MapEvent; |
| ... | @@ -35,6 +36,7 @@ import com.google.common.collect.Sets; | ... | @@ -35,6 +36,7 @@ import com.google.common.collect.Sets; |
| 35 | /** | 36 | /** |
| 36 | * Unit tests for {@link AtomixConsistentMap}. | 37 | * Unit tests for {@link AtomixConsistentMap}. |
| 37 | */ | 38 | */ |
| 39 | +@Ignore | ||
| 38 | public class AtomixConsistentMapTest extends AtomixTestBase { | 40 | public class AtomixConsistentMapTest extends AtomixTestBase { |
| 39 | 41 | ||
| 40 | @Override | 42 | @Override | ... | ... |
| ... | @@ -20,6 +20,7 @@ import java.util.Queue; | ... | @@ -20,6 +20,7 @@ import java.util.Queue; |
| 20 | import java.util.concurrent.CompletableFuture; | 20 | import java.util.concurrent.CompletableFuture; |
| 21 | import java.util.function.Consumer; | 21 | import java.util.function.Consumer; |
| 22 | 22 | ||
| 23 | +import org.junit.Ignore; | ||
| 23 | import org.junit.Test; | 24 | import org.junit.Test; |
| 24 | 25 | ||
| 25 | import static org.junit.Assert.*; | 26 | import static org.junit.Assert.*; |
| ... | @@ -34,6 +35,7 @@ import io.atomix.resource.ResourceType; | ... | @@ -34,6 +35,7 @@ import io.atomix.resource.ResourceType; |
| 34 | /** | 35 | /** |
| 35 | * Unit tests for {@link AtomixLeaderElector}. | 36 | * Unit tests for {@link AtomixLeaderElector}. |
| 36 | */ | 37 | */ |
| 38 | +@Ignore | ||
| 37 | public class AtomixLeaderElectorTest extends AtomixTestBase { | 39 | public class AtomixLeaderElectorTest extends AtomixTestBase { |
| 38 | 40 | ||
| 39 | NodeId node1 = new NodeId("node1"); | 41 | NodeId node1 = new NodeId("node1"); | ... | ... |
| ... | @@ -17,6 +17,7 @@ package org.onosproject.store.primitives.resources.impl; | ... | @@ -17,6 +17,7 @@ package org.onosproject.store.primitives.resources.impl; |
| 17 | 17 | ||
| 18 | import static org.junit.Assert.*; | 18 | import static org.junit.Assert.*; |
| 19 | 19 | ||
| 20 | +import org.junit.Ignore; | ||
| 20 | import org.junit.Test; | 21 | import org.junit.Test; |
| 21 | 22 | ||
| 22 | import io.atomix.Atomix; | 23 | import io.atomix.Atomix; |
| ... | @@ -26,6 +27,7 @@ import io.atomix.variables.DistributedLong; | ... | @@ -26,6 +27,7 @@ import io.atomix.variables.DistributedLong; |
| 26 | /** | 27 | /** |
| 27 | * Unit tests for {@link AtomixCounter}. | 28 | * Unit tests for {@link AtomixCounter}. |
| 28 | */ | 29 | */ |
| 30 | +@Ignore | ||
| 29 | public class AtomixLongTest extends AtomixTestBase { | 31 | public class AtomixLongTest extends AtomixTestBase { |
| 30 | 32 | ||
| 31 | @Override | 33 | @Override | ... | ... |
-
Please register or login to post a comment