1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-07 14:21:48 +02:00

test illegal reference specifier error message

This commit is contained in:
Robert Hensing 2025-01-18 10:21:08 +01:00 committed by Sergei Trofimovich
parent 2b4d461c14
commit f4def47c89
2 changed files with 10 additions and 0 deletions

View file

@ -79,4 +79,10 @@ rec {
buildCommand = ''echo ${dep} > "''${outputs[out]}"'';
};
test12 = makeTest 12 {
builder = builtins.toFile "builder.sh" "mkdir $out $lib";
outputs = ["out" "lib"];
disallowedReferences = ["dev"];
};
}