aboutsummaryrefslogtreecommitdiff
path: root/tests/zstd.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/zstd.sh')
-rw-r--r--tests/zstd.sh28
1 files changed, 0 insertions, 28 deletions
diff --git a/tests/zstd.sh b/tests/zstd.sh
deleted file mode 100644
index ba7c20501..000000000
--- a/tests/zstd.sh
+++ /dev/null
@@ -1,28 +0,0 @@
-source common.sh
-
-clearStore
-clearCache
-
-cacheURI="file://$cacheDir?compression=zstd"
-
-outPath=$(nix-build dependencies.nix --no-out-link)
-
-nix copy --to $cacheURI $outPath
-
-HASH=$(nix hash path $outPath)
-
-clearStore
-clearCacheCache
-
-nix copy --from $cacheURI $outPath --no-check-sigs
-
-if ls $cacheDir/nar/*.zst &> /dev/null; then
- echo "files do exist"
-else
- echo "nars do not exist"
- exit 1
-fi
-
-HASH2=$(nix hash path $outPath)
-
-[[ $HASH = $HASH2 ]]