diff options
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/t0107-snapshot.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/t0107-snapshot.sh b/tests/t0107-snapshot.sh index 89b9159..0811ec4 100755 --- a/tests/t0107-snapshot.sh +++ b/tests/t0107-snapshot.sh | |||
@@ -25,7 +25,7 @@ test_expect_success 'verify gzip format' ' | |||
25 | 25 | ||
26 | test_expect_success 'untar' ' | 26 | test_expect_success 'untar' ' |
27 | rm -rf master && | 27 | rm -rf master && |
28 | tar -xzf master.tar.gz | 28 | gzip -dc master.tar.gz | tar -xf - |
29 | ' | 29 | ' |
30 | 30 | ||
31 | test_expect_success 'count files' ' | 31 | test_expect_success 'count files' ' |
@@ -66,7 +66,7 @@ test_expect_success LZIP 'verify lzip format' ' | |||
66 | 66 | ||
67 | test_expect_success LZIP 'untar' ' | 67 | test_expect_success LZIP 'untar' ' |
68 | rm -rf master && | 68 | rm -rf master && |
69 | tar --lzip -xf master.tar.lz | 69 | lzip -dc master.tar.lz | tar -xf - |
70 | ' | 70 | ' |
71 | 71 | ||
72 | test_expect_success LZIP 'count files' ' | 72 | test_expect_success LZIP 'count files' ' |
@@ -107,7 +107,7 @@ test_expect_success XZ 'verify xz format' ' | |||
107 | 107 | ||
108 | test_expect_success XZ 'untar' ' | 108 | test_expect_success XZ 'untar' ' |
109 | rm -rf master && | 109 | rm -rf master && |
110 | tar --xz -xf master.tar.xz | 110 | xz -dc master.tar.xz | tar -xf - |
111 | ' | 111 | ' |
112 | 112 | ||
113 | test_expect_success XZ 'count files' ' | 113 | test_expect_success XZ 'count files' ' |
@@ -148,7 +148,7 @@ test_expect_success ZSTD 'verify zstd format' ' | |||
148 | 148 | ||
149 | test_expect_success ZSTD 'untar' ' | 149 | test_expect_success ZSTD 'untar' ' |
150 | rm -rf master && | 150 | rm -rf master && |
151 | tar --zstd -xf master.tar.zst | 151 | zstd -dc master.tar.zst | tar -xf - |
152 | ' | 152 | ' |
153 | 153 | ||
154 | test_expect_success ZSTD 'count files' ' | 154 | test_expect_success ZSTD 'count files' ' |