From bd1ec260fb26e99186e4f9981eea870819c3ea63 Mon Sep 17 00:00:00 2001 From: tobim Date: Wed, 22 Feb 2023 15:22:18 +0100 Subject: [PATCH] arrow-cpp: disable failing test on darwin (#217661) --- pkgs/development/libraries/arrow-cpp/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/libraries/arrow-cpp/default.nix b/pkgs/development/libraries/arrow-cpp/default.nix index 4bebd827145..0796dce793d 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}";