mirror of https://github.com/apache/jclouds.git
Filesystem: disable directory integration test.
There is no notion of marker blobs in the file system blob store, which means that when listing results after issuing the "createDirectory" request, the marker blob will not be in the result set.
This commit is contained in:
parent
669feb4d0c
commit
5383148d9e
|
@ -34,6 +34,7 @@ import org.jclouds.blobstore.integration.internal.BaseBlobStoreIntegrationTest;
|
|||
import org.jclouds.blobstore.integration.internal.BaseContainerIntegrationTest;
|
||||
import org.jclouds.filesystem.reference.FilesystemConstants;
|
||||
import org.jclouds.filesystem.utils.TestUtils;
|
||||
import org.testng.SkipException;
|
||||
import org.testng.annotations.DataProvider;
|
||||
import org.testng.annotations.Test;
|
||||
|
||||
|
@ -155,6 +156,11 @@ public class FilesystemContainerIntegrationTest extends BaseContainerIntegration
|
|||
super.testListContainerMaxResults();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void testDirectory() {
|
||||
throw new SkipException("There is no notion of marker blobs in the file system blob store");
|
||||
}
|
||||
|
||||
@DataProvider
|
||||
public Object[][] ignoreOnMacOSX() {
|
||||
return org.jclouds.utils.TestUtils.isMacOSX() ? TestUtils.NO_INVOCATIONS
|
||||
|
|
Loading…
Reference in New Issue