about summary refs log tree commit diff
path: root/third_party/nix/tests/dump-db.sh
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/nix/tests/dump-db.sh')
-rw-r--r--third_party/nix/tests/dump-db.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/third_party/nix/tests/dump-db.sh b/third_party/nix/tests/dump-db.sh
deleted file mode 100644
index d6eea42aa0..0000000000
--- a/third_party/nix/tests/dump-db.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-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_STATE_DIR/db
-
-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