stdenv/darwin: disable gnugrep tests in early bootstrap

This commit is contained in:
Emily
2025-04-13 19:50:57 +02:00
committed by Vladimír Čunát
parent eb786288e1
commit f04c9b157c
+4
View File
@@ -598,6 +598,10 @@ assert bootstrapTools.passthru.isFromBootstrapFiles or false; # sanity check
# Use libiconvReal with gettext to break an infinite recursion.
gettext = super.gettext.override { libiconv = super.libiconvReal; };
# Disable greps tests for now due to impure locale updates in
# macOS 15.4 breaking them in the bootstrap.
gnugrep = super.gnugrep.overrideAttrs { doCheck = false; };
# Disable tests because they use dejagnu, which fails to run.
libffi = super.libffi.override { doCheck = false; };