mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-26 06:44:06 +00:00
Merge pull request #251729 from tjni/glog-disable-test
glog: disable logging tests on aarch64-darwin
This commit is contained in:
commit
6330827c96
@ -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 New Issue
Block a user