about summary refs log tree commit diff
diff options
context:
space:
mode:
authortobim <tobim@fastmail.fm>2023-02-22 15:22:18 +0100
committerGitHub <noreply@github.com>2023-02-22 09:22:18 -0500
commitbd1ec260fb26e99186e4f9981eea870819c3ea63 (patch)
treeddd1d7535a31100cd23af8679b5d160bf58ba368
parente90c3615113d56df9f68c0f8f8435173833dc750 (diff)
arrow-cpp: disable failing test on darwin (#217661)
-rw-r--r--pkgs/development/libraries/arrow-cpp/default.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/development/libraries/arrow-cpp/default.nix b/pkgs/development/libraries/arrow-cpp/default.nix
index 4bebd827145f9..0796dce793d66 100644
--- a/pkgs/development/libraries/arrow-cpp/default.nix
+++ b/pkgs/development/libraries/arrow-cpp/default.nix
@@ -234,6 +234,12 @@ stdenv.mkDerivation rec {
         "TestMinioServer.Connect"
         "TestS3FS.*"
         "TestS3FSGeneric.*"
+      ] ++ lib.optionals stdenv.isDarwin [
+        # TODO: revisit at 12.0.0 or when
+        # https://github.com/apache/arrow/commit/295c6644ca6b67c95a662410b2c7faea0920c989
+        # is available, see
+        # https://github.com/apache/arrow/pull/15288#discussion_r1071244661
+        "ExecPlanExecution.StressSourceSinkStopped"
       ];
     in
     lib.optionalString doInstallCheck "-${lib.concatStringsSep ":" filteredTests}";