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:
Timur Alperovich 2015-07-07 15:20:02 -07:00 committed by Andrew Gaul
parent 669feb4d0c
commit 5383148d9e
1 changed files with 6 additions and 0 deletions

View File

@ -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