From 2c9c5b6f2980c7a2dd2f7c1c5cc43ef95cade235 Mon Sep 17 00:00:00 2001 From: Jamie Magee Date: Sun, 8 Mar 2026 13:02:25 -0700 Subject: [PATCH] arrow-cpp: fix TestAzuriteGeneric.Empty exclusion on x86_64-darwin The test was in disabledTests, which feeds ctest --exclude-regex and only matches ctest target names (e.g. "arrow-azurefs-test"), not individual googletest cases. Moved it to GTEST_FILTER where individual test names are actually filtered. Ref: https://github.com/NixOS/nixpkgs/pull/488184 --- pkgs/by-name/ar/arrow-cpp/package.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/ar/arrow-cpp/package.nix b/pkgs/by-name/ar/arrow-cpp/package.nix index 6a105528fe54..e7dc1578a355 100644 --- a/pkgs/by-name/ar/arrow-cpp/package.nix +++ b/pkgs/by-name/ar/arrow-cpp/package.nix @@ -153,6 +153,10 @@ stdenv.mkDerivation (finalAttrs: { "TestMinioServer.Connect" "TestS3FS.*" "TestS3FSGeneric.*" + ] + ++ lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64) [ + # https://github.com/apache/arrow/issues/41505 + "TestAzuriteGeneric.Empty" ]; in "-${lib.concatStringsSep ":" filteredTests}"; @@ -306,10 +310,6 @@ stdenv.mkDerivation (finalAttrs: { # Failing with "run-test.sh: line 88: 63682 Abort trap: 6" "arrow-flight-internals-test" "arrow-flight-sql-test" - ] - ++ lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64) [ - # https://github.com/apache/arrow/issues/41505 - "TestAzuriteGeneric.Empty" ]; in ''