Repository: jclouds Updated Branches: refs/heads/master 7863df69a -> 34733e991
Skip test which cannot run on openstack-swift Project: http://git-wip-us.apache.org/repos/asf/jclouds/repo Commit: http://git-wip-us.apache.org/repos/asf/jclouds/commit/34733e99 Tree: http://git-wip-us.apache.org/repos/asf/jclouds/tree/34733e99 Diff: http://git-wip-us.apache.org/repos/asf/jclouds/diff/34733e99 Branch: refs/heads/master Commit: 34733e991b25922f019b90db5d30c8e21c54d82a Parents: 7863df6 Author: Andrew Gaul <[email protected]> Authored: Sat Jan 24 15:12:38 2015 -0800 Committer: Andrew Gaul <[email protected]> Committed: Sat Jan 24 15:12:38 2015 -0800 ---------------------------------------------------------------------- .../integration/SwiftContainerIntegrationLiveTest.java | 6 ++++++ 1 file changed, 6 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/jclouds/blob/34733e99/apis/openstack-swift/src/test/java/org/jclouds/openstack/swift/v1/blobstore/integration/SwiftContainerIntegrationLiveTest.java ---------------------------------------------------------------------- diff --git a/apis/openstack-swift/src/test/java/org/jclouds/openstack/swift/v1/blobstore/integration/SwiftContainerIntegrationLiveTest.java b/apis/openstack-swift/src/test/java/org/jclouds/openstack/swift/v1/blobstore/integration/SwiftContainerIntegrationLiveTest.java index d954867..fcabb0a 100644 --- a/apis/openstack-swift/src/test/java/org/jclouds/openstack/swift/v1/blobstore/integration/SwiftContainerIntegrationLiveTest.java +++ b/apis/openstack-swift/src/test/java/org/jclouds/openstack/swift/v1/blobstore/integration/SwiftContainerIntegrationLiveTest.java @@ -23,6 +23,7 @@ import java.util.Properties; import org.jclouds.blobstore.integration.internal.BaseContainerIntegrationTest; import org.testng.annotations.Test; +import org.testng.SkipException; @Test(groups = "live", testName = "SwiftContainerIntegrationLiveTest") public class SwiftContainerIntegrationLiveTest extends BaseContainerIntegrationTest { @@ -51,4 +52,9 @@ public class SwiftContainerIntegrationLiveTest extends BaseContainerIntegrationT // ^^ squishy regex to deal with various formats of testng messages. } } + + @Override + public void testDelimiter() throws Exception { + throw new SkipException("openstack-swift does not implement pseudo-directories"); + } }
