Skip to content

Commit

Permalink
Update patch to skip spuriously failing tests on osx-64
Browse files Browse the repository at this point in the history
The surrounding code was changed upstream:

TileDB-Inc/TileDB-R@ed47b59
  • Loading branch information
jdblischak committed Mar 21, 2024
1 parent 3cd5f40 commit c1468c1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions recipe/0001-skip-osx-test-to-avoid-spurious-segfault.patch
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
diff --git a/inst/tinytest/test_tiledbarray.R b/inst/tinytest/test_tiledbarray.R
index b9185e5..4311f95 100644
index e50d8720..99875684 100644
--- a/inst/tinytest/test_tiledbarray.R
+++ b/inst/tinytest/test_tiledbarray.R
@@ -1,6 +1,10 @@
library(tinytest)
library(tiledb)

+# Skip for conda osx-64 build (controlled by Jinja selectors in recipe) due to
+# spurious test failures
+exit_file("skip for conda osx-64 build")
+
isOldWindows <- Sys.info()[["sysname"]] == "Windows" && grepl('Windows Server 2008', osVersion)
if (isOldWindows) exit_file("skip this file on old Windows releases")
isMacOS <- (Sys.info()['sysname'] == "Darwin")

ctx <- tiledb_ctx(limitTileDBCores())

0 comments on commit c1468c1

Please sign in to comment.