Merge pull request #251729 from tjni/glog-disable-test

glog: disable logging tests on aarch64-darwin
This commit is contained in:
K900 2023-08-27 11:06:10 +03:00 committed by GitHub
commit 6330827c96
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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