aboutsummaryrefslogtreecommitdiff
path: root/tests/selfref-gc.sh
diff options
context:
space:
mode:
authorSergei Trofimovich <slyich@gmail.com>2021-10-04 09:00:01 +0100
committerThéophane Hufschmitt <theophane.hufschmitt@tweag.io>2022-04-21 10:06:39 +0200
commit6ada4963111908211a4bbcc2ae65f4205cffaa18 (patch)
tree76433d99dd6cd07a3aa9951bdedf98dacad6bf51 /tests/selfref-gc.sh
parent9345b4e9ca1b14071b471851508b37edfc2d1248 (diff)
nix: add (failing) selfreference test for multiple realizations
The test illustrates failure in issue #5320. Here derivation and it's built input have identical CA sotre path. As a result we generate extraneout reference to build input: $ make installcheck ... ran test tests/selfref-gc.sh... [PASS] ran test tests/ca/selfref-gc.sh... [FAIL] ... deleting '/tmp/.../tests/ca/selfref-gc/store/iqciq1mpg5hc7p6a52fp2bjxbyc9av0v-selfref-gc' deleting '/tmp/...tests/ca/selfref-gc/store/zh0kwpnirw3qbv6dl1ckr1y0kd5aw6ax-selfref-gc.drv' error: executing SQLite statement 'delete from ValidPaths where path = '/tmp/.../tests/ca/selfref-gc/store/fsjq0k146r85lsh01l0icl30rnhv7z72-selfref-gc';': constraint failed (in '/tmp/.../tests/ca/selfref-gc/var/nix/db/db.sqlite')
Diffstat (limited to 'tests/selfref-gc.sh')
-rw-r--r--tests/selfref-gc.sh28
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/selfref-gc.sh b/tests/selfref-gc.sh
new file mode 100644
index 000000000..cf1c4d18e
--- /dev/null
+++ b/tests/selfref-gc.sh
@@ -0,0 +1,28 @@
+source common.sh
+
+clearStore
+
+nix-build --no-out-link -E '
+ with import ./config.nix;
+
+ let d1 = mkDerivation {
+ name = "selfref-gc";
+ outputs = [ "out" ];
+ buildCommand = "
+ echo SELF_REF: $out > $out
+ ";
+ }; in
+
+ # the only change from d1 is d1 as an (unused) build input
+ # to get identical store path in CA.
+ mkDerivation {
+ name = "selfref-gc";
+ outputs = [ "out" ];
+ buildCommand = "
+ echo UNUSED: ${d1}
+ echo SELF_REF: $out > $out
+ ";
+ }
+'
+
+nix-collect-garbage