> @@ -545,7 +541,9 @@ public void testOverwriteBlobMetadata() throws Exception {
> storageStrategy.putBlob(CONTAINER_NAME, blob);
>
> blob = storageStrategy.getBlob(CONTAINER_NAME, blobKey);
> - assertEquals(blob.getMetadata().getUserMetadata().get("key1"),
> "value1");
> + if (!blob.getMetadata().getUserMetadata().containsKey("key1")) {
> + throw new SkipException("Underlying filesystem does not support
> xattr");
> + }
We could check the result of
getFileStore(Paths.get(getProperty("jclouds.filesystem.basedir"))).supportsFileAttributeView(UserDefinedFileAttributeView.class).
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/510/files#r17204094