Skip to content

Commit 7970cab

Browse files
Assert only that MemFS is supported. (#351)
Fixes nightly build failures when the Core is not built with cloud backends enabled.
1 parent c9a8023 commit 7970cab

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

tests/TileDB.CSharp.Test/ContextTest.cs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,9 @@ public void TestIsFileSystemSupported()
5858
{
5959
using var ctx = new Context();
6060
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));
61+
// While the release binaries support all other filesystems (except for
62+
// HDFS), binaries from nightly builds and other custom builds may not.
63+
// MemFS is the only filesystem that is known to be always supported.
6564
}
6665

6766
[TestMethod]

0 commit comments

Comments
 (0)