Merge pull request #213322 from wegank/rapidjson-valgrind

rapidjson: disable tests on darwin
This commit is contained in:
Weijia Wang 2023-01-29 08:59:50 +01:00 committed by GitHub
commit 9d9e27f2fe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -43,7 +43,7 @@ stdenv.mkDerivation rec {
cmakeFlags = [ "-DGTEST_SOURCE_DIR=${gtest.dev}/include" ];
nativeCheckInputs = [ valgrind ];
doCheck = !stdenv.hostPlatform.isStatic;
doCheck = !stdenv.hostPlatform.isStatic && !stdenv.isDarwin;
meta = with lib; {
description = "Fast JSON parser/generator for C++ with both SAX/DOM style API";