From a8edf185a9e1677088c8c30acc9d281c8350bca7 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 26 May 2014 14:55:47 +0200 Subject: Add constant ‘nixPath’ MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It contains the Nix expression search path as a list of { prefix, path } sets, e.g. [ { path = "/nix/var/nix/profiles/per-user/root/channels/nixos"; prefix = ""; } { path = "/etc/nixos/configuration.nix"; prefix = "nixos-config"; } { path = "/home/eelco/Dev/nix/inst/share/nix/corepkgs"; prefix = "nix"; } ] --- tests/lang.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/lang.sh') diff --git a/tests/lang.sh b/tests/lang.sh index bb3b9ca775c3..7157a68c5ceb 100644 --- a/tests/lang.sh +++ b/tests/lang.sh @@ -46,7 +46,7 @@ for i in lang/eval-okay-*.nix; do if test -e lang/$i.flags; then flags=$(cat lang/$i.flags) fi - if ! NIX_PATH=lang/dir3:lang/dir4_PATH nix-instantiate $flags --eval --strict lang/$i.nix > lang/$i.out; then + if ! NIX_PATH=lang/dir3:lang/dir4 nix-instantiate $flags --eval --strict lang/$i.nix > lang/$i.out; then echo "FAIL: $i should evaluate" fail=1 elif ! diff lang/$i.out lang/$i.exp; then -- cgit 1.4.1