bison: force tests to run serially on FreeBSD

This commit is contained in:
Jon Hermansen
2025-10-31 18:12:33 -04:00
parent 9a94527704
commit 7d16bb783c
+2
View File
@@ -41,6 +41,8 @@ stdenv.mkDerivation rec {
propagatedBuildInputs = [ m4 ];
enableParallelBuilding = true;
# tests are flaky / timing sensitive on FreeBSD
enableParallelChecking = !stdenv.hostPlatform.isFreeBSD;
# Normal check and install check largely execute the same test suite
doCheck = false;