sqlite: disable tests on Darwin

The tests seem to be unreliable (at least when SQLite is built by the
Nix daemon). Sometimes they succeed, but they often do not.

Even if SQLite were removed from the bootstrap, this would still be a
problem, so disable the tests for now.
This commit is contained in:
Randy Eckenrode
2026-01-27 11:33:32 -05:00
parent f93b00f6e6
commit 02ff32a522
@@ -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";