Files
nix/tests/functional/cli-characterisation/bad-output-specified.nix
Robert Hensing fd984a3e9d tests: add CLI characterisation tests
Improve coverage ahead of changes to get-drvs.cc and related code.
Each fixture is a separate file to avoid line-number churn in error
expectations.
2026-02-26 18:06:51 +01:00

9 lines
181 B
Nix

{
type = "derivation";
name = "bad-output-specified-1.0";
outPath = builtins.toFile "out" "";
outputs = [ "out" ];
outputSpecified = true;
outputName = "nonexistent";
}