t: content-addressed: add test for caDependingOnFailingCA

This uncovers an issue with the front-end.
This commit is contained in:
Rick van Schijndel
2024-04-03 22:45:53 +02:00
parent b676b08fac
commit 1665aed5e3
2 changed files with 9 additions and 2 deletions

View File

@ -25,6 +25,13 @@ rec {
FOO = empty_dir;
};
caDependingOnFailingCA =
cfg.mkContentAddressedDerivation {
name = "ca-depending-on-failing-ca";
builder = ./dir-with-file-builder.sh;
FOO = fails;
};
nonCaDependingOnCA =
cfg.mkDerivation {
name = "non-ca-depending-on-ca";