You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jclouds.apache.org by ga...@apache.org on 2016/01/21 08:47:20 UTC

jclouds git commit: Skip testBlobAccess on filesytem

Repository: jclouds
Updated Branches:
  refs/heads/master edacad2b6 -> 7b3a300d5


Skip testBlobAccess on filesytem

Follow on to 52dc1a3ccfc6413d3350bc8f1d092cda8d7a25d3.


Project: http://git-wip-us.apache.org/repos/asf/jclouds/repo
Commit: http://git-wip-us.apache.org/repos/asf/jclouds/commit/7b3a300d
Tree: http://git-wip-us.apache.org/repos/asf/jclouds/tree/7b3a300d
Diff: http://git-wip-us.apache.org/repos/asf/jclouds/diff/7b3a300d

Branch: refs/heads/master
Commit: 7b3a300d518250c67e5c0c183f25fc17cf6dfa51
Parents: edacad2
Author: Andrew Gaul <ga...@apache.org>
Authored: Wed Jan 20 23:46:06 2016 -0800
Committer: Andrew Gaul <ga...@apache.org>
Committed: Wed Jan 20 23:47:06 2016 -0800

----------------------------------------------------------------------
 .../filesystem/integration/FilesystemBlobIntegrationTest.java  | 6 ++++++
 1 file changed, 6 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jclouds/blob/7b3a300d/apis/filesystem/src/test/java/org/jclouds/filesystem/integration/FilesystemBlobIntegrationTest.java
----------------------------------------------------------------------
diff --git a/apis/filesystem/src/test/java/org/jclouds/filesystem/integration/FilesystemBlobIntegrationTest.java b/apis/filesystem/src/test/java/org/jclouds/filesystem/integration/FilesystemBlobIntegrationTest.java
index 2676fff..d469037 100644
--- a/apis/filesystem/src/test/java/org/jclouds/filesystem/integration/FilesystemBlobIntegrationTest.java
+++ b/apis/filesystem/src/test/java/org/jclouds/filesystem/integration/FilesystemBlobIntegrationTest.java
@@ -29,6 +29,7 @@ import org.jclouds.blobstore.integration.internal.BaseBlobStoreIntegrationTest;
 import org.jclouds.filesystem.reference.FilesystemConstants;
 import org.jclouds.filesystem.utils.TestUtils;
 import org.testng.annotations.Test;
+import org.testng.SkipException;
 
 @Test(groups = { "integration" }, singleThreaded = true,  testName = "blobstore.FilesystemBlobIntegrationTest")
 public class FilesystemBlobIntegrationTest extends BaseBlobIntegrationTest {
@@ -87,4 +88,9 @@ public class FilesystemBlobIntegrationTest extends BaseBlobIntegrationTest {
          super.checkUserMetadata(userMetadata1, userMetadata2);
       }
    }
+
+   @Override
+   public void testSetBlobAccess() throws Exception {
+      throw new SkipException("filesystem does not support anonymous access");
+   }
 }