glog: disable logging tests on aarch64-darwin

This commit is contained in:
Theodore Ni 2023-08-27 01:01:33 -07:00
parent d78f502c6b
commit b7c800502a
No known key found for this signature in database
GPG key ID: 48B67583BDDD4474

View file

@ -53,6 +53,8 @@ stdenv.mkDerivation rec {
let
excludedTests = lib.optionals stdenv.isDarwin [
"mock-log"
] ++ lib.optionals (stdenv.isDarwin && stdenv.isAarch64) [
"logging" # works around segfaults on aarch64-darwin for now
];
excludedTestsRegex = lib.optionalString (excludedTests != [ ]) "(${lib.concatStringsSep "|" excludedTests})";
in