From be5968600b620c85f562c1925f57eb5610e17e81 Mon Sep 17 00:00:00 2001 From: Hraban Luyat Date: Mon, 2 Dec 2024 07:38:01 -0500 Subject: [PATCH] sbcl: disable broken test for 24.05 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit See https://github.com/NixOS/nixpkgs/pull/359214 and in particular @szlend’s comment. Thanks to @pcboy for reporting. --- pkgs/development/compilers/sbcl/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/development/compilers/sbcl/default.nix b/pkgs/development/compilers/sbcl/default.nix index 75ead6184aa88..d41651f71dbef 100644 --- a/pkgs/development/compilers/sbcl/default.nix +++ b/pkgs/development/compilers/sbcl/default.nix @@ -112,6 +112,13 @@ stdenv.mkDerivation (self: rec { # Heisentest, sometimes fails on ofBorg, would rather just disable it than # have it block a release. "futex-wait.test.sh" + ] ++ lib.optionals (stdenv.hostPlatform.isDarwin) [ + # This only fails on darwin in 24.05 since + # 57b36ea5c83a1841b174ec6cd5e423439fe9d7a0. It’s exclusively a 24.05 + # problem. + # + # https://github.com/NixOS/nixpkgs/pull/359214 + "run-program.test.sh" ]; patches = [ # Support the NIX_SBCL_DYNAMIC_SPACE_SIZE envvar. Upstream SBCL didn’t want