Disable snapshot/restore tests that fail on windows with AwaitsFix while working on the fix
This commit is contained in:
parent
1895ba8271
commit
2b57770543
|
@ -21,6 +21,7 @@ package org.elasticsearch.snapshots;
|
||||||
|
|
||||||
import com.carrotsearch.randomizedtesting.LifecycleScope;
|
import com.carrotsearch.randomizedtesting.LifecycleScope;
|
||||||
import com.google.common.collect.ImmutableList;
|
import com.google.common.collect.ImmutableList;
|
||||||
|
import org.apache.lucene.util.LuceneTestCase;
|
||||||
import org.elasticsearch.action.admin.cluster.repositories.put.PutRepositoryResponse;
|
import org.elasticsearch.action.admin.cluster.repositories.put.PutRepositoryResponse;
|
||||||
import org.elasticsearch.action.admin.cluster.snapshots.create.CreateSnapshotResponse;
|
import org.elasticsearch.action.admin.cluster.snapshots.create.CreateSnapshotResponse;
|
||||||
import org.elasticsearch.client.Client;
|
import org.elasticsearch.client.Client;
|
||||||
|
@ -80,6 +81,7 @@ public class DedicatedClusterSnapshotRestoreTests extends AbstractSnapshotTests
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
@LuceneTestCase.AwaitsFix(bugUrl="imotov is working on the fix")
|
||||||
public void snapshotDuringNodeShutdownTest() throws Exception {
|
public void snapshotDuringNodeShutdownTest() throws Exception {
|
||||||
logger.info("--> start 2 nodes");
|
logger.info("--> start 2 nodes");
|
||||||
ArrayList<String> nodes = newArrayList();
|
ArrayList<String> nodes = newArrayList();
|
||||||
|
|
|
@ -21,6 +21,7 @@ package org.elasticsearch.snapshots;
|
||||||
|
|
||||||
import com.carrotsearch.randomizedtesting.LifecycleScope;
|
import com.carrotsearch.randomizedtesting.LifecycleScope;
|
||||||
import com.google.common.collect.ImmutableList;
|
import com.google.common.collect.ImmutableList;
|
||||||
|
import org.apache.lucene.util.LuceneTestCase;
|
||||||
import org.elasticsearch.ExceptionsHelper;
|
import org.elasticsearch.ExceptionsHelper;
|
||||||
import org.elasticsearch.action.ListenableActionFuture;
|
import org.elasticsearch.action.ListenableActionFuture;
|
||||||
import org.elasticsearch.action.admin.cluster.repositories.put.PutRepositoryResponse;
|
import org.elasticsearch.action.admin.cluster.repositories.put.PutRepositoryResponse;
|
||||||
|
@ -268,6 +269,7 @@ public class SharedClusterSnapshotRestoreTests extends AbstractSnapshotTests {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
@LuceneTestCase.AwaitsFix(bugUrl="imotov is working on the fix")
|
||||||
public void snapshotFileFailureDuringSnapshotTest() throws Exception {
|
public void snapshotFileFailureDuringSnapshotTest() throws Exception {
|
||||||
Client client = client();
|
Client client = client();
|
||||||
|
|
||||||
|
@ -320,6 +322,7 @@ public class SharedClusterSnapshotRestoreTests extends AbstractSnapshotTests {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
@LuceneTestCase.AwaitsFix(bugUrl="imotov is working on the fix")
|
||||||
public void dataFileFailureDuringSnapshotTest() throws Exception {
|
public void dataFileFailureDuringSnapshotTest() throws Exception {
|
||||||
Client client = client();
|
Client client = client();
|
||||||
logger.info("--> creating repository");
|
logger.info("--> creating repository");
|
||||||
|
@ -364,6 +367,7 @@ public class SharedClusterSnapshotRestoreTests extends AbstractSnapshotTests {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
@LuceneTestCase.AwaitsFix(bugUrl="imotov is working on the fix")
|
||||||
public void dataFileFailureDuringRestoreTest() throws Exception {
|
public void dataFileFailureDuringRestoreTest() throws Exception {
|
||||||
File repositoryLocation = newTempDir(LifecycleScope.TEST);
|
File repositoryLocation = newTempDir(LifecycleScope.TEST);
|
||||||
Client client = client();
|
Client client = client();
|
||||||
|
@ -411,6 +415,7 @@ public class SharedClusterSnapshotRestoreTests extends AbstractSnapshotTests {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@TestLogging("snapshots:TRACE")
|
@TestLogging("snapshots:TRACE")
|
||||||
|
@LuceneTestCase.AwaitsFix(bugUrl="imotov is working on the fix")
|
||||||
public void deletionOfFailingToRecoverIndexShouldStopRestore() throws Exception {
|
public void deletionOfFailingToRecoverIndexShouldStopRestore() throws Exception {
|
||||||
File repositoryLocation = newTempDir(LifecycleScope.TEST);
|
File repositoryLocation = newTempDir(LifecycleScope.TEST);
|
||||||
Client client = client();
|
Client client = client();
|
||||||
|
@ -659,6 +664,7 @@ public class SharedClusterSnapshotRestoreTests extends AbstractSnapshotTests {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@TestLogging("cluster.routing.allocation.decider:TRACE")
|
@TestLogging("cluster.routing.allocation.decider:TRACE")
|
||||||
|
@LuceneTestCase.AwaitsFix(bugUrl="imotov is working on the fix")
|
||||||
public void moveShardWhileSnapshottingTest() throws Exception {
|
public void moveShardWhileSnapshottingTest() throws Exception {
|
||||||
Client client = client();
|
Client client = client();
|
||||||
File repositoryLocation = newTempDir(LifecycleScope.TEST);
|
File repositoryLocation = newTempDir(LifecycleScope.TEST);
|
||||||
|
|
Loading…
Reference in New Issue