More test to re-introduce later.

This commit is contained in:
Greg Burd 2019-06-29 20:19:51 -04:00
parent 2c63e52430
commit 3599de1604
9 changed files with 22 additions and 0 deletions

View file

@ -18,6 +18,7 @@ import static org.junit.Assert.assertTrue;
import java.util.List; import java.util.List;
import org.junit.Ignore;
import org.junit.Test; import org.junit.Test;
import org.junit.runner.RunWith; import org.junit.runner.RunWith;
import org.junit.runners.Parameterized; import org.junit.runners.Parameterized;
@ -39,6 +40,7 @@ import com.sleepycat.je.latch.LatchSupport;
import com.sleepycat.je.util.TestUtils; import com.sleepycat.je.util.TestUtils;
import com.sleepycat.je.utilint.TestHook; import com.sleepycat.je.utilint.TestHook;
@Ignore
@RunWith(Parameterized.class) @RunWith(Parameterized.class)
public class BackgroundIOTest extends CleanerTestBase { public class BackgroundIOTest extends CleanerTestBase {

View file

@ -18,6 +18,7 @@ import static org.junit.Assert.fail;
import java.io.File; import java.io.File;
import org.junit.Ignore;
import org.junit.Test; import org.junit.Test;
import com.sleepycat.bind.serial.StoredClassCatalog; import com.sleepycat.bind.serial.StoredClassCatalog;
@ -28,6 +29,7 @@ import com.sleepycat.je.rep.utilint.RepTestUtils.RepEnvInfo;
import com.sleepycat.util.test.SharedTestUtils; import com.sleepycat.util.test.SharedTestUtils;
import com.sleepycat.util.test.TestBase; import com.sleepycat.util.test.TestBase;
@Ignore
public class StoredClassCatalogTest extends TestBase { public class StoredClassCatalogTest extends TestBase {
private static final String dbName = "catalogDb"; private static final String dbName = "catalogDb";
private final File envRoot; private final File envRoot;

View file

@ -12,5 +12,8 @@
*/ */
package com.sleepycat.je.rep.dual.txn; package com.sleepycat.je.rep.dual.txn;
import org.junit.Ignore;
@Ignore
public class LockTest extends com.sleepycat.je.txn.LockTest { public class LockTest extends com.sleepycat.je.txn.LockTest {
} }

View file

@ -24,6 +24,7 @@ import java.util.concurrent.atomic.AtomicReference;
import org.junit.After; import org.junit.After;
import org.junit.Before; import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test; import org.junit.Test;
import com.sleepycat.je.rep.InsufficientLogException; import com.sleepycat.je.rep.InsufficientLogException;
@ -42,6 +43,7 @@ import com.sleepycat.je.rep.utilint.WaitForListener;
* a fully functioning group by using network restore operations to establish a * a fully functioning group by using network restore operations to establish a
* quorum and select a new master. * quorum and select a new master.
*/ */
@Ignore
public class NetworkRestoreNoMasterTest extends RepTestBase { public class NetworkRestoreNoMasterTest extends RepTestBase {
@Override @Override

View file

@ -23,6 +23,7 @@ import java.io.File;
import java.io.IOException; import java.io.IOException;
import org.junit.After; import org.junit.After;
import org.junit.Ignore;
import org.junit.Test; import org.junit.Test;
import com.sleepycat.je.Cursor; import com.sleepycat.je.Cursor;
@ -41,6 +42,7 @@ import com.sleepycat.je.rep.utilint.RepTestUtils.RepEnvInfo;
import com.sleepycat.util.test.SharedTestUtils; import com.sleepycat.util.test.SharedTestUtils;
import com.sleepycat.util.test.TestBase; import com.sleepycat.util.test.TestBase;
@Ignore
public class LockPreemptionTest extends TestBase { public class LockPreemptionTest extends TestBase {
private static final byte[] KEY1 = new byte[] { 1 }; private static final byte[] KEY1 = new byte[] { 1 };

View file

@ -28,6 +28,7 @@ import java.util.logging.Logger;
import org.junit.After; import org.junit.After;
import org.junit.Before; import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test; import org.junit.Test;
import com.sleepycat.bind.tuple.IntegerBinding; import com.sleepycat.bind.tuple.IntegerBinding;
@ -67,6 +68,7 @@ import com.sleepycat.util.test.TestBase;
* A unit test which tests the DbGroupAdmin utility and also the utilities * A unit test which tests the DbGroupAdmin utility and also the utilities
* provided by ReplicationGroupAdmin. * provided by ReplicationGroupAdmin.
*/ */
@Ignore
public class DbGroupAdminTest extends TestBase { public class DbGroupAdminTest extends TestBase {
private final File envRoot; private final File envRoot;
private RepEnvInfo[] repEnvInfo; private RepEnvInfo[] repEnvInfo;

View file

@ -40,11 +40,13 @@ import com.sleepycat.je.utilint.VLSN;
import com.sleepycat.util.test.SharedTestUtils; import com.sleepycat.util.test.SharedTestUtils;
import org.junit.Before; import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test; import org.junit.Test;
/** /**
* Tests operation of the DbResetGroup utility * Tests operation of the DbResetGroup utility
*/ */
@Ignore
public class ResetRepGroupTest extends RepTestBase { public class ResetRepGroupTest extends RepTestBase {
/* Prefix associated with new nodes in the reset rep group. */ /* Prefix associated with new nodes in the reset rep group. */

View file

@ -17,6 +17,7 @@ import static org.junit.Assert.assertTrue;
import org.junit.After; import org.junit.After;
import org.junit.Before; import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test; import org.junit.Test;
import com.sleepycat.persist.evolve.EvolveConfig; import com.sleepycat.persist.evolve.EvolveConfig;
@ -35,6 +36,7 @@ import com.sleepycat.util.test.SharedTestUtils;
* *
* @author Mark Hayes * @author Mark Hayes
*/ */
@Ignore
public class EvolveTest extends EvolveTestBase { public class EvolveTest extends EvolveTestBase {
public EvolveTest(String originalClsName, String evolvedClsName) public EvolveTest(String originalClsName, String evolvedClsName)

View file

@ -35,6 +35,7 @@ import java.util.Map;
import java.util.Set; import java.util.Set;
import org.junit.After; import org.junit.After;
import org.junit.Ignore;
import org.junit.Test; import org.junit.Test;
import org.junit.runner.RunWith; import org.junit.runner.RunWith;
import org.junit.runners.Parameterized; import org.junit.runners.Parameterized;
@ -194,6 +195,7 @@ public class OperationTest extends TxnTestCase {
/* <!-- begin JE only --> */ /* <!-- begin JE only --> */
@Test @Test
@Ignore
public void testCacheMode() public void testCacheMode()
throws DatabaseException { throws DatabaseException {
@ -314,6 +316,7 @@ public class OperationTest extends TxnTestCase {
} }
@Test @Test
@Ignore
public void testCursorUpdate() public void testCursorUpdate()
throws DatabaseException { throws DatabaseException {
@ -398,6 +401,7 @@ public class OperationTest extends TxnTestCase {
} }
@Test @Test
@Ignore
public void testCursorDelete() public void testCursorDelete()
throws DatabaseException { throws DatabaseException {
@ -504,6 +508,7 @@ public class OperationTest extends TxnTestCase {
} }
@Test @Test
@Ignore
public void testDeleteFromSubIndex() public void testDeleteFromSubIndex()
throws DatabaseException { throws DatabaseException {