1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-25 06:31:14 +02:00

Add --print-errorlogs to mesonCheckFlags

This prints the error logs in the tests, including when they're run
with `checkPhase` in the dev shell.
This commit is contained in:
Robert Hensing 2024-11-18 15:08:32 +01:00
parent 4387c5ae80
commit d65fac0fc4

View file

@ -70,6 +70,9 @@ let
pkgs.buildPackages.meson
pkgs.buildPackages.ninja
] ++ prevAttrs.nativeBuildInputs or [];
mesonCheckFlags = prevAttrs.mesonCheckFlags or [] ++ [
"--print-errorlogs"
];
};
mesonBuildLayer = finalAttrs: prevAttrs: