about summary refs log tree commit diff
path: root/tests/dump-db.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/dump-db.sh')
-rw-r--r--tests/dump-db.sh20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/dump-db.sh b/tests/dump-db.sh
new file mode 100644
index 0000000000..234b7ac026
--- /dev/null
+++ b/tests/dump-db.sh
@@ -0,0 +1,20 @@
+source common.sh
+
+clearStore
+
+path=$(nix-build dependencies.nix -o $TEST_ROOT/result)
+
+deps="$(nix-store -qR $TEST_ROOT/result)"
+
+nix-store --dump-db > $TEST_ROOT/dump
+
+rm -rf $NIX_DB_DIR
+
+nix-store --load-db < $TEST_ROOT/dump
+
+deps2="$(nix-store -qR $TEST_ROOT/result)"
+
+[ "$deps" = "$deps2" ];
+
+nix-store --dump-db > $TEST_ROOT/dump2
+cmp $TEST_ROOT/dump $TEST_ROOT/dump2