From 7970cab0429a0fb89cf61a41cfde917165fe7d4e Mon Sep 17 00:00:00 2001 From: Theodore Tsirpanis Date: Mon, 18 Dec 2023 16:22:06 +0200 Subject: [PATCH] Assert only that MemFS is supported. (#351) Fixes nightly build failures when the Core is not built with cloud backends enabled. --- tests/TileDB.CSharp.Test/ContextTest.cs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/tests/TileDB.CSharp.Test/ContextTest.cs b/tests/TileDB.CSharp.Test/ContextTest.cs index 540dd447..2aa4e8b0 100644 --- a/tests/TileDB.CSharp.Test/ContextTest.cs +++ b/tests/TileDB.CSharp.Test/ContextTest.cs @@ -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]