From e3daee919d0335d2c41fc556ff55d8289ade10d0 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 1 Mar 2006 15:46:22 +0000 Subject: [PATCH] * Test `nix-store -q --binding'. --- tests/common.sh.in | 1 + tests/simple.sh | 2 ++ 2 files changed, 3 insertions(+) diff --git a/tests/common.sh.in b/tests/common.sh.in index 403e144e2d..9766642b00 100644 --- a/tests/common.sh.in +++ b/tests/common.sh.in @@ -27,6 +27,7 @@ export xmlflags="@xmlflags@" export xsltproc="@xsltproc@" export version=@version@ +export system=@system@ export nixinstantiate=$TOP/src/nix-instantiate/nix-instantiate export nixstore=$TOP/src/nix-store/nix-store diff --git a/tests/simple.sh b/tests/simple.sh index a2242e34e8..7f7b48f2d9 100644 --- a/tests/simple.sh +++ b/tests/simple.sh @@ -2,6 +2,8 @@ source common.sh drvPath=$($nixinstantiate simple.nix) +test "$($nixstore -q --binding system "$drvPath")" = "$system" + echo "derivation is $drvPath" outPath=$($nixstore -rvv "$drvPath")