You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by va...@apache.org on 2016/07/26 18:45:14 UTC

lucene-solr:branch_6x: SOLR-9242: Disabling TestLocalFSCloudBackupRestore on Windows till we fix it

Repository: lucene-solr
Updated Branches:
  refs/heads/branch_6x 91ed36ddb -> 124492826


SOLR-9242: Disabling TestLocalFSCloudBackupRestore on Windows till we fix it


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/12449282
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/12449282
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/12449282

Branch: refs/heads/branch_6x
Commit: 12449282624a2342dde6a51a90872b104a23560a
Parents: 91ed36d
Author: Varun Thacker <va...@apache.org>
Authored: Wed Jul 27 00:13:36 2016 +0530
Committer: Varun Thacker <va...@apache.org>
Committed: Wed Jul 27 00:14:22 2016 +0530

----------------------------------------------------------------------
 .../test/org/apache/solr/cloud/TestLocalFSCloudBackupRestore.java  | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/12449282/solr/core/src/test/org/apache/solr/cloud/TestLocalFSCloudBackupRestore.java
----------------------------------------------------------------------
diff --git a/solr/core/src/test/org/apache/solr/cloud/TestLocalFSCloudBackupRestore.java b/solr/core/src/test/org/apache/solr/cloud/TestLocalFSCloudBackupRestore.java
index db68913..c6f6a04 100644
--- a/solr/core/src/test/org/apache/solr/cloud/TestLocalFSCloudBackupRestore.java
+++ b/solr/core/src/test/org/apache/solr/cloud/TestLocalFSCloudBackupRestore.java
@@ -16,6 +16,7 @@
  */
 package org.apache.solr.cloud;
 
+import org.apache.lucene.util.Constants;
 import org.junit.BeforeClass;
 
 /**
@@ -27,6 +28,7 @@ public class TestLocalFSCloudBackupRestore extends AbstractCloudBackupRestoreTes
 
   @BeforeClass
   public static void setupClass() throws Exception {
+    assumeFalse("Backup/Restore is currently buggy on Windows. Tracking the fix on SOLR-9242", Constants.WINDOWS);
     configureCluster(NUM_SHARDS)// nodes
         .addConfig("conf1", TEST_PATH().resolve("configsets").resolve("cloud-minimal").resolve("conf"))
         .configure();