Skip to content

Commit

Permalink
Assert only that MemFS is supported. (#351)
Browse files Browse the repository at this point in the history
Fixes nightly build failures when the Core is not built with cloud backends enabled.
  • Loading branch information
teo-tsirpanis authored Dec 18, 2023
1 parent c9a8023 commit 7970cab
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions tests/TileDB.CSharp.Test/ContextTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,9 @@ public void TestIsFileSystemSupported()
{
using var ctx = new Context();
Assert.IsTrue(ctx.IsFileSystemSupported(FileSystemType.InMemory));
Assert.IsTrue(ctx.IsFileSystemSupported(FileSystemType.S3));
Assert.IsTrue(ctx.IsFileSystemSupported(FileSystemType.Azure));
Assert.IsTrue(ctx.IsFileSystemSupported(FileSystemType.GoogleCloudStorage));
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.
}

[TestMethod]
Expand Down

0 comments on commit 7970cab

Please sign in to comment.