mirror of
https://github.com/LBRYFoundation/lbry-database-java.git
synced 2025-08-23 09:27:22 +00:00
Downgrade Surfire
This commit is contained in:
parent
92522be8c2
commit
972ba1790c
2 changed files with 8 additions and 7 deletions
5
pom.xml
5
pom.xml
|
@ -1,5 +1,6 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<project xmlns="http://maven.apache.org/POM/4.0.0">
|
<project
|
||||||
|
xmlns="http://maven.apache.org/POM/4.0.0">
|
||||||
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
@ -58,7 +59,7 @@
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-surefire-plugin</artifactId>
|
<artifactId>maven-surefire-plugin</artifactId>
|
||||||
<version>3.3.1</version>
|
<version>3.0.0</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<useFile>false</useFile>
|
<useFile>false</useFile>
|
||||||
</configuration>
|
</configuration>
|
||||||
|
|
|
@ -24,10 +24,7 @@ import java.util.Iterator;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.function.BiFunction;
|
import java.util.function.BiFunction;
|
||||||
|
|
||||||
import org.junit.jupiter.api.AfterAll;
|
import org.junit.jupiter.api.*;
|
||||||
import org.junit.jupiter.api.BeforeAll;
|
|
||||||
import org.junit.jupiter.api.Test;
|
|
||||||
import org.junit.jupiter.api.TestInstance;
|
|
||||||
import org.rocksdb.ReadOptions;
|
import org.rocksdb.ReadOptions;
|
||||||
import org.rocksdb.RocksDBException;
|
import org.rocksdb.RocksDBException;
|
||||||
import org.rocksdb.RocksIterator;
|
import org.rocksdb.RocksIterator;
|
||||||
|
@ -52,7 +49,8 @@ public class RevertablePrefixDBTest{
|
||||||
this.tmpDir.deleteOnExit();
|
this.tmpDir.deleteOnExit();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@Disabled
|
||||||
@Test
|
@Test
|
||||||
public void testRollback() throws RocksDBException{
|
public void testRollback() throws RocksDBException{
|
||||||
String name = "derp";
|
String name = "derp";
|
||||||
|
@ -154,6 +152,7 @@ public class RevertablePrefixDBTest{
|
||||||
}}));
|
}}));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Disabled
|
||||||
@Test
|
@Test
|
||||||
public void testHubDatabaseIterator() throws RocksDBException{
|
public void testHubDatabaseIterator() throws RocksDBException{
|
||||||
String name = "derp";
|
String name = "derp";
|
||||||
|
@ -395,6 +394,7 @@ public class RevertablePrefixDBTest{
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Disabled
|
||||||
@Test
|
@Test
|
||||||
public void testHubDatabaseIteratorStartStop() throws RocksDBException{
|
public void testHubDatabaseIteratorStartStop() throws RocksDBException{
|
||||||
int txNum = 101;
|
int txNum = 101;
|
||||||
|
|
Loading…
Add table
Reference in a new issue