sqlite: Do not run tests on BSD

This commit is contained in:
Artemis Tosini
2026-07-14 16:47:28 -04:00
parent 6178c1bb0d
commit 0d4e839df4

View File

@@ -132,7 +132,8 @@ stdenv.mkDerivation rec {
'';
# SQLites tests are unreliable on Darwin. Sometimes they run successfully, but often they do not.
doCheck = !stdenv.hostPlatform.isDarwin;
# The tests are only defined for Darwin, Linux, Windows, and OpenBSD, not any other unix-like OS.
doCheck = stdenv.hostPlatform.isLinux;
# When tcl is not available, only run test targets that don't need it.
checkTarget = lib.optionalString stdenv.hostPlatform.isStatic "fuzztest sourcetest";