php84Extensions.ctype: remove flaky test for aarch64-darwin (#398521)

This commit is contained in:
Pol Dellaiera
2025-04-14 14:01:25 +02:00
committed by GitHub
+7 -1
View File
@@ -428,7 +428,13 @@ lib.makeScope pkgs.newScope (
configureFlags = [ "--with-bz2=${bzip2.dev}" ];
}
{ name = "calendar"; }
{ name = "ctype"; }
{
name = "ctype";
postPatch = lib.optionalString stdenv.hostPlatform.isDarwin ''
# Broken test on aarch64-darwin
rm ext/ctype/tests/lc_ctype_inheritance.phpt
'';
}
{
name = "curl";
buildInputs = [ curl ];