about summary refs log tree commit diff
path: root/tests/nar-access.sh
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2018-03-02T15·59-0500
committerShea Levy <shea@shealevy.com>2018-03-02T15·59-0500
commitaa8bbbf69dfb7a1cd02237fee65c2fce39d27556 (patch)
treef1780a7b9ca97e3034d14dce3adfba7184fe8d67 /tests/nar-access.sh
parent5c7a6d07de1dbe18eaac5e6bce766dbe978b8165 (diff)
parent78ac3eb4ebc04e180abeb01bcc6f9d4103522eab (diff)
Merge branch 'write-failure-fixes' of git://github.com/lheckemann/nix
Diffstat (limited to 'tests/nar-access.sh')
-rw-r--r--tests/nar-access.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/nar-access.sh b/tests/nar-access.sh
index bd849cbfab1d..553d6ca89d7d 100644
--- a/tests/nar-access.sh
+++ b/tests/nar-access.sh
@@ -36,3 +36,9 @@ diff -u baz.cat-nar $storePath/foo/baz
 # Test missing files.
 nix ls-store --json -R $storePath/xyzzy 2>&1 | grep 'does not exist in NAR'
 nix ls-store $storePath/xyzzy 2>&1 | grep 'does not exist'
+
+# Test failure to dump.
+if nix-store --dump $storePath >/dev/full ; then
+    echo "dumping to /dev/full should fail"
+    exit -1
+fi