Repository: jclouds Updated Branches: refs/heads/master affad9fa3 -> 3ab2716a7
Skip tests which cannot run on Azure Project: http://git-wip-us.apache.org/repos/asf/jclouds/repo Commit: http://git-wip-us.apache.org/repos/asf/jclouds/commit/3ab2716a Tree: http://git-wip-us.apache.org/repos/asf/jclouds/tree/3ab2716a Diff: http://git-wip-us.apache.org/repos/asf/jclouds/diff/3ab2716a Branch: refs/heads/master Commit: 3ab2716a7a44da41cc1f6ea3573d28d3c8ca2598 Parents: affad9f Author: Andrew Gaul <[email protected]> Authored: Sat Jan 24 13:42:27 2015 -0800 Committer: Andrew Gaul <[email protected]> Committed: Sat Jan 24 13:42:27 2015 -0800 ---------------------------------------------------------------------- .../AzureBlobContainerIntegrationLiveTest.java | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/jclouds/blob/3ab2716a/providers/azureblob/src/test/java/org/jclouds/azureblob/blobstore/integration/AzureBlobContainerIntegrationLiveTest.java ---------------------------------------------------------------------- diff --git a/providers/azureblob/src/test/java/org/jclouds/azureblob/blobstore/integration/AzureBlobContainerIntegrationLiveTest.java b/providers/azureblob/src/test/java/org/jclouds/azureblob/blobstore/integration/AzureBlobContainerIntegrationLiveTest.java index 2a69dbe..6372627 100644 --- a/providers/azureblob/src/test/java/org/jclouds/azureblob/blobstore/integration/AzureBlobContainerIntegrationLiveTest.java +++ b/providers/azureblob/src/test/java/org/jclouds/azureblob/blobstore/integration/AzureBlobContainerIntegrationLiveTest.java @@ -18,10 +18,26 @@ package org.jclouds.azureblob.blobstore.integration; import org.jclouds.blobstore.integration.internal.BaseContainerIntegrationTest; import org.testng.annotations.Test; +import org.testng.SkipException; @Test(groups = "live") public class AzureBlobContainerIntegrationLiveTest extends BaseContainerIntegrationTest { public AzureBlobContainerIntegrationLiveTest() { provider = "azureblob"; } + + @Override + public void testDelimiter() throws Exception { + throw new SkipException("Azure does not use key names for markers"); + } + + @Override + public void testListMarkerAfterLastKey() throws Exception { + throw new SkipException("cannot specify arbitrary markers"); + } + + @Override + public void testListContainerWithZeroMaxResults() throws Exception { + throw new SkipException("Azure requires a positive integer for max results"); + } }
