sqlite: disable tests on Darwin (#484427)

This commit is contained in:
Vladimír Čunát
2026-01-29 12:59:45 +00:00
committed by GitHub
@@ -128,7 +128,8 @@ stdenv.mkDerivation rec {
mv sqlite-doc-${archiveVersion version} $doc/share/doc/sqlite
'';
doCheck = true;
# SQLites tests are unreliable on Darwin. Sometimes they run successfully, but often they do not.
doCheck = !stdenv.hostPlatform.isDarwin;
# When tcl is not available, only run test targets that don't need it.
checkTarget = lib.optionalString stdenv.hostPlatform.isStatic "fuzztest sourcetest";