We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9a8023 commit 7970cabCopy full SHA for 7970cab
1 file changed
tests/TileDB.CSharp.Test/ContextTest.cs
@@ -58,10 +58,9 @@ public void TestIsFileSystemSupported()
58
{
59
using var ctx = new Context();
60
Assert.IsTrue(ctx.IsFileSystemSupported(FileSystemType.InMemory));
61
- Assert.IsTrue(ctx.IsFileSystemSupported(FileSystemType.S3));
62
- Assert.IsTrue(ctx.IsFileSystemSupported(FileSystemType.Azure));
63
- Assert.IsTrue(ctx.IsFileSystemSupported(FileSystemType.GoogleCloudStorage));
64
- Assert.AreEqual(!OperatingSystem.IsWindows(), ctx.IsFileSystemSupported(FileSystemType.Hdfs));
+ // While the release binaries support all other filesystems (except for
+ // HDFS), binaries from nightly builds and other custom builds may not.
+ // MemFS is the only filesystem that is known to be always supported.
65
}
66
67
[TestMethod]
0 commit comments