You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jclouds.apache.org by an...@apache.org on 2014/10/03 17:11:13 UTC

git commit: JCLOUDS-538: Avoiding a VM crash trying to run live tests for Swift

Repository: jclouds
Updated Branches:
  refs/heads/1.8.x 1d95d299d -> 2cbb5e26c


JCLOUDS-538: Avoiding a VM crash trying to run live tests for Swift

TestNG was throwing up as its reflection was unable to find certain test methods


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

Branch: refs/heads/1.8.x
Commit: 2cbb5e26c055b53775a2b3bf932e9d99161383ff
Parents: 1d95d29
Author: Andrew Phillips <an...@apache.org>
Authored: Fri Apr 18 19:30:13 2014 -0400
Committer: Andrew Phillips <an...@apache.org>
Committed: Fri Oct 3 10:10:27 2014 -0500

----------------------------------------------------------------------
 .../blobstore/integration/SwiftContainerLiveTest.java    | 11 +++++++++++
 1 file changed, 11 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jclouds/blob/2cbb5e26/apis/swift/src/test/java/org/jclouds/openstack/swift/blobstore/integration/SwiftContainerLiveTest.java
----------------------------------------------------------------------
diff --git a/apis/swift/src/test/java/org/jclouds/openstack/swift/blobstore/integration/SwiftContainerLiveTest.java b/apis/swift/src/test/java/org/jclouds/openstack/swift/blobstore/integration/SwiftContainerLiveTest.java
index a12e8c1..d83d35b 100644
--- a/apis/swift/src/test/java/org/jclouds/openstack/swift/blobstore/integration/SwiftContainerLiveTest.java
+++ b/apis/swift/src/test/java/org/jclouds/openstack/swift/blobstore/integration/SwiftContainerLiveTest.java
@@ -41,4 +41,15 @@ public class SwiftContainerLiveTest extends BaseContainerLiveTest {
    public void testPublicAccess() throws MalformedURLException, InterruptedException, IOException {
       super.testPublicAccess();
    }
+
+   @Test(dependsOnMethods = "testPublicAccess")
+   public void testPublicAccessInNonDefaultLocation() throws InterruptedException, MalformedURLException, IOException {
+      super.testPublicAccessInNonDefaultLocation();
+   }
+
+   @Test(dependsOnMethods = "testPublicAccess")
+   public void testPublicAccessInNonDefaultLocationWithBigBlob() throws InterruptedException, MalformedURLException,
+            IOException {
+      super.testPublicAccessInNonDefaultLocationWithBigBlob();
+   }
 }