Skip to content
This repository was archived by the owner on Apr 22, 2020. It is now read-only.

Commit 176e3a5

Browse files
author
Mark Needham
committed
ignore these all for the moment
1 parent 496f860 commit 176e3a5

File tree

5 files changed

+10
-1
lines changed

5 files changed

+10
-1
lines changed

tests/src/test/java/org/neo4j/graphalgo/core/IdMapTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020

2121
import com.carrotsearch.hppc.LongHashSet;
2222
import com.carrotsearch.randomizedtesting.RandomizedTest;
23+
import com.carrotsearch.randomizedtesting.annotations.ThreadLeakScope;
2324
import org.junit.Test;
2425
import org.neo4j.collection.primitive.PrimitiveIntIterable;
2526
import org.neo4j.collection.primitive.PrimitiveIntIterator;
@@ -30,6 +31,7 @@
3031

3132
import static org.junit.Assert.*;
3233

34+
@ThreadLeakScope(ThreadLeakScope.Scope.NONE)
3335
public final class IdMapTest extends RandomizedTest {
3436

3537
@Test

tests/src/test/java/org/neo4j/graphalgo/core/utils/paged/HugeLongArrayTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
package org.neo4j.graphalgo.core.utils.paged;
2020

2121
import com.carrotsearch.randomizedtesting.RandomizedTest;
22+
import com.carrotsearch.randomizedtesting.annotations.ThreadLeakScope;
2223
import org.junit.Test;
2324

2425
import java.util.Arrays;
@@ -33,6 +34,7 @@
3334
import static org.junit.Assert.assertThat;
3435
import static org.junit.Assert.assertTrue;
3536

37+
@ThreadLeakScope(ThreadLeakScope.Scope.NONE)
3638
public final class HugeLongArrayTest extends RandomizedTest {
3739

3840
private static final int PS = 16384;

tests/src/test/java/org/neo4j/graphalgo/core/utils/paged/PagedLongStackTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
package org.neo4j.graphalgo.core.utils.paged;
2020

2121
import com.carrotsearch.randomizedtesting.RandomizedTest;
22+
import com.carrotsearch.randomizedtesting.annotations.ThreadLeakScope;
2223
import org.junit.Rule;
2324
import org.junit.Test;
2425
import org.junit.rules.ErrorCollector;
@@ -27,6 +28,7 @@
2728

2829
import static org.hamcrest.Matchers.is;
2930

31+
@ThreadLeakScope(ThreadLeakScope.Scope.NONE)
3032
public final class PagedLongStackTest extends RandomizedTest {
3133

3234
@Rule

tests/src/test/java/org/neo4j/graphalgo/core/utils/paged/SparseLongArrayTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
package org.neo4j.graphalgo.core.utils.paged;
2020

2121
import com.carrotsearch.randomizedtesting.RandomizedTest;
22+
import com.carrotsearch.randomizedtesting.annotations.ThreadLeakScope;
2223
import org.junit.Test;
2324
import org.neo4j.graphalgo.core.utils.PrivateLookup;
2425

@@ -31,6 +32,7 @@
3132
import static org.junit.Assert.assertTrue;
3233
import static org.junit.Assert.fail;
3334

35+
@ThreadLeakScope(ThreadLeakScope.Scope.NONE)
3436
public final class SparseLongArrayTest extends RandomizedTest {
3537

3638
private static final int PS = PageUtil.pageSizeFor(Long.BYTES);

tests/src/test/java/org/neo4j/graphalgo/core/utils/queue/IntMinPriorityQueueTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
package org.neo4j.graphalgo.core.utils.queue;
2020

2121
import com.carrotsearch.randomizedtesting.RandomizedTest;
22+
import com.carrotsearch.randomizedtesting.annotations.ThreadLeakScope;
2223
import org.junit.Test;
2324
import org.neo4j.helpers.collection.Pair;
2425

@@ -33,7 +34,7 @@
3334
import static org.junit.Assert.assertThat;
3435
import static org.junit.Assert.assertTrue;
3536

36-
37+
@ThreadLeakScope(ThreadLeakScope.Scope.NONE)
3738
public final class IntMinPriorityQueueTest extends RandomizedTest {
3839

3940
@Test

0 commit comments

Comments
 (0)