Skip to content

Commit db0c531

Browse files
authored
php84Extensions.ctype: remove flaky test for aarch64-darwin (#398521)
2 parents 65e8af0 + 1a563db commit db0c531

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

pkgs/top-level/php-packages.nix

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,13 @@ lib.makeScope pkgs.newScope (
428428
configureFlags = [ "--with-bz2=${bzip2.dev}" ];
429429
}
430430
{ name = "calendar"; }
431-
{ name = "ctype"; }
431+
{
432+
name = "ctype";
433+
postPatch = lib.optionalString stdenv.hostPlatform.isDarwin ''
434+
# Broken test on aarch64-darwin
435+
rm ext/ctype/tests/lc_ctype_inheritance.phpt
436+
'';
437+
}
432438
{
433439
name = "curl";
434440
buildInputs = [ curl ];

0 commit comments

Comments
 (0)