Clean up a test warning

This commit is contained in:
Eelco Dolstra 2014-02-06 13:54:44 +01:00
parent 20d0598928
commit 1f94ec3924
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ echo "collecting garbage..."
ln -sfn $reference "$NIX_STATE_DIR"/gcroots/ref
nix-store --gc
if test "$(sqlite3 ./test-tmp/db/db.sqlite 'select count(*) from Refs')" -ne 0; then
if [ -n "$(type -p sqlite3)" -a "$(sqlite3 ./test-tmp/db/db.sqlite 'select count(*) from Refs')" -ne 0 ]; then
echo "referrers not cleaned up"
exit 1
fi