From 135deed75a76c9dea5a2a9ba7d36e2037d23a785 Mon Sep 17 00:00:00 2001 From: Nick Cao Date: Sun, 2 Mar 2025 15:35:31 -0500 Subject: [PATCH] c-stdaux: disable tests on darwin --- pkgs/by-name/c-/c-stdaux/package.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/by-name/c-/c-stdaux/package.nix b/pkgs/by-name/c-/c-stdaux/package.nix index 17e04f450087..6f77d3486207 100644 --- a/pkgs/by-name/c-/c-stdaux/package.nix +++ b/pkgs/by-name/c-/c-stdaux/package.nix @@ -22,7 +22,9 @@ stdenv.mkDerivation rec { ninja ]; - doCheck = true; + # Assertion failed: (false && "!__builtin_constant_p(c_align_to(16, non_constant_expr ? 8 : 16))"), + # function test_basic_gnuc, file ../src/test-basic.c, line 548. + doCheck = !stdenv.hostPlatform.isDarwin; meta = { homepage = "https://github.com/c-util/c-stdaux";