glog: disable logging tests on aarch64-darwin
This commit is contained in:
parent
d78f502c6b
commit
b7c800502a
1 changed files with 2 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue