diff options
author | June McEnroe | 2022-02-13 12:07:49 -0500 |
---|---|---|
committer | June McEnroe | 2022-02-13 12:10:49 -0500 |
commit | 516175469a8c6895496ef909b487992deb45f460 (patch) | |
tree | e0e8b4d38f05e870089de8babc0d3aca3bb4d3b0 /tests/t0107-snapshot.sh | |
parent | Fix crash trying to print "this commit" on 404s (diff) | |
parent | git: update to v2.32.0 (diff) | |
download | cgit-516175469a8c6895496ef909b487992deb45f460.tar.gz cgit-516175469a8c6895496ef909b487992deb45f460.zip |
Merge up to git v2.32.0
Diffstat (limited to 'tests/t0107-snapshot.sh')
-rwxr-xr-x | tests/t0107-snapshot.sh | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/tests/t0107-snapshot.sh b/tests/t0107-snapshot.sh index c164d3e..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' ' |
@@ -61,13 +61,12 @@ test_expect_success LZIP 'strip off the header lines' ' | |||
61 | ' | 61 | ' |
62 | 62 | ||
63 | test_expect_success LZIP 'verify lzip format' ' | 63 | test_expect_success LZIP 'verify lzip format' ' |
64 | lzip --test master.tar.lz && | 64 | lzip --test master.tar.lz |
65 | cp master.tar.lz /tmp/. | ||
66 | ' | 65 | ' |
67 | 66 | ||
68 | test_expect_success LZIP 'untar' ' | 67 | test_expect_success LZIP 'untar' ' |
69 | rm -rf master && | 68 | rm -rf master && |
70 | tar --lzip -xf master.tar.lz | 69 | lzip -dc master.tar.lz | tar -xf - |
71 | ' | 70 | ' |
72 | 71 | ||
73 | test_expect_success LZIP 'count files' ' | 72 | test_expect_success LZIP 'count files' ' |
@@ -103,13 +102,12 @@ test_expect_success XZ 'strip off the header lines' ' | |||
103 | ' | 102 | ' |
104 | 103 | ||
105 | test_expect_success XZ 'verify xz format' ' | 104 | test_expect_success XZ 'verify xz format' ' |
106 | xz --test master.tar.xz && | 105 | xz --test master.tar.xz |
107 | cp master.tar.xz /tmp/. | ||
108 | ' | 106 | ' |
109 | 107 | ||
110 | test_expect_success XZ 'untar' ' | 108 | test_expect_success XZ 'untar' ' |
111 | rm -rf master && | 109 | rm -rf master && |
112 | tar --xz -xf master.tar.xz | 110 | xz -dc master.tar.xz | tar -xf - |
113 | ' | 111 | ' |
114 | 112 | ||
115 | test_expect_success XZ 'count files' ' | 113 | test_expect_success XZ 'count files' ' |
@@ -145,13 +143,12 @@ test_expect_success ZSTD 'strip off the header lines' ' | |||
145 | ' | 143 | ' |
146 | 144 | ||
147 | test_expect_success ZSTD 'verify zstd format' ' | 145 | test_expect_success ZSTD 'verify zstd format' ' |
148 | zstd --test master.tar.zst && | 146 | zstd --test master.tar.zst |
149 | cp master.tar.zst /tmp/. | ||
150 | ' | 147 | ' |
151 | 148 | ||
152 | test_expect_success ZSTD 'untar' ' | 149 | test_expect_success ZSTD 'untar' ' |
153 | rm -rf master && | 150 | rm -rf master && |
154 | tar --zstd -xf master.tar.zst | 151 | zstd -dc master.tar.zst | tar -xf - |
155 | ' | 152 | ' |
156 | 153 | ||
157 | test_expect_success ZSTD 'count files' ' | 154 | test_expect_success ZSTD 'count files' ' |