nixVersions.nixComponents_git.nix-functional-tests: disable two tests broken because of the state of staging -> master

This commit is contained in:
Philip Taron
2025-09-19 08:46:07 -07:00
parent 439c423240
commit 5cf4e4a70e
@@ -15,6 +15,7 @@
nix-store,
nix-expr,
nix-cli,
toml11,
busybox-sandbox-shell ? null,
@@ -72,6 +73,13 @@ mkMesonDerivation (
echo $PWD | grep tests/functional
'';
# `toml11` upgrade causes these to fail in 2.32+: https://github.com/NixOS/nixpkgs/pull/442682
# Remove when that PR lands in master.
${if lib.versionAtLeast (lib.versions.majorMinor version) "2.32" then "preCheck" else null} =
lib.optionalString (lib.versionOlder toml11.version "4.0") ''
rm -f ../lang/eval-fail-fromTOML-{over,under}flow*
'';
mesonCheckFlags = [
"--print-errorlogs"
];