aboutsummaryrefslogtreecommitdiff
path: root/tests/nix-build.sh
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2011-10-10 21:32:34 +0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2011-10-10 21:32:34 +0000
commit8af7d766f0244d5b15d89ab2d2d66b0d63e8f576 (patch)
tree3346cb494de0bf35403d812efd8b757595cd44d6 /tests/nix-build.sh
parentcd6d02c366af43bccdd2ef345193e4fdeca78a13 (diff)
* Refactoring: remove unnecessary variables from the tests.
Diffstat (limited to 'tests/nix-build.sh')
-rw-r--r--tests/nix-build.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/nix-build.sh b/tests/nix-build.sh
index aab3615cc..d575e9aae 100644
--- a/tests/nix-build.sh
+++ b/tests/nix-build.sh
@@ -2,7 +2,7 @@ source common.sh
clearStore
-(cd $TEST_ROOT && $nixbuild ../dependencies.nix)
+(cd $TEST_ROOT && nix-build ../dependencies.nix)
test "$(cat $TEST_ROOT/result/foobar)" = FOOBAR
# The result should be retained by a GC.
@@ -10,10 +10,10 @@ echo A
target=$(readLink $TEST_ROOT/result)
echo B
echo target is $target
-$nixstore --gc
+nix-store --gc
test -e $target/foobar
# But now it should be gone.
rm $TEST_ROOT/result
-$nixstore --gc
+nix-store --gc
if test -e $target/foobar; then false; fi