2021-06-21 13:17:31 +00:00
|
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
|
|
# Regression test for https://github.com/NixOS/nix/issues/4858
|
|
|
|
|
|
|
|
|
|
source common.sh
|
2021-07-26 04:54:55 +00:00
|
|
|
|
|
|
|
|
|
requireDaemonNewerThan "2.4pre20210621"
|
2021-06-21 13:17:31 +00:00
|
|
|
|
|
|
|
|
|
# Get the output path of `rootCA`, and put some garbage instead
|
|
|
|
|
outPath="$(nix-build ./content-addressed.nix -A rootCA --no-out-link)"
|
2021-08-16 18:03:32 +00:00
|
|
|
|
nix-store --delete $(nix-store -q --referrers-closure "$outPath")
|
2021-06-21 13:17:31 +00:00
|
|
|
|
touch "$outPath"
|
|
|
|
|
|
|
|
|
|
# The build should correctly remove the garbage and put the expected path instead
|
|
|
|
|
nix-build ./content-addressed.nix -A rootCA --no-out-link
|
|
|
|
|
|
|
|
|
|
# Rebuild it. This shouldn’t overwrite the existing path
|
|
|
|
|
oldInode=$(stat -c '%i' "$outPath")
|
|
|
|
|
nix-build ./content-addressed.nix -A rootCA --no-out-link --arg seed 2
|
|
|
|
|
newInode=$(stat -c '%i' "$outPath")
|
|
|
|
|
[[ "$oldInode" == "$newInode" ]]
|