forked from lix-project/lix
18b4c53f71
stdenv relies on this. So ignore self-references (but only in legacy non-structured attributes mode).
17 lines
508 B
Bash
17 lines
508 B
Bash
source common.sh
|
|
|
|
clearStore
|
|
|
|
RESULT=$TEST_ROOT/result
|
|
|
|
nix-build -o $RESULT check-reqs.nix -A test1
|
|
|
|
(! nix-build -o $RESULT check-reqs.nix -A test2)
|
|
(! nix-build -o $RESULT check-reqs.nix -A test3)
|
|
(! nix-build -o $RESULT check-reqs.nix -A test4) 2>&1 | grep -q 'check-reqs-dep1'
|
|
(! nix-build -o $RESULT check-reqs.nix -A test4) 2>&1 | grep -q 'check-reqs-dep2'
|
|
(! nix-build -o $RESULT check-reqs.nix -A test5)
|
|
(! nix-build -o $RESULT check-reqs.nix -A test6)
|
|
|
|
nix-build -o $RESULT check-reqs.nix -A test7
|