about summary refs log tree commit diff
path: root/tests/dependencies.sh
blob: 8a0ba1f2a15e6ee5c515b71f35e82bca99dce792 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
storeExpr=$($TOP/src/nix-instantiate/nix-instantiate dependencies.nix)

echo "store expr is $storeExpr"

outPath=$($TOP/src/nix-store/nix-store -qnfvvvvv "$storeExpr")

echo "output path is $outPath"

text=$(cat "$outPath"/foobar)
if test "$text" != "FOOBAR"; then exit 1; fi

deps=$($TOP/src/nix-store/nix-store -qnR "$storeExpr")

echo "output closures are $deps"

# The output path should be in the closure.
echo "$deps" | grep -q "$outPath"

# Input-1 is not retained.
if echo "$deps" | grep -q "dependencies-input-1"; then exit 1; fi

# Input-2 is retained.
echo "$deps" | grep -q "dependencies-input-2"