Lines Matching +full:test_compat_lz4_2 +full:. +full:tar +full:. +full:lz4

4  * All rights reserved.
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
13 * documentation and/or other materials provided with the distribution.
17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 #include "test.h"
30 * Verify our ability to read sample files compatibly with 'lz4 -d'.
33 * * lz4 -d will read multiple lz4 streams, concatenating the output
34 * * lz4 -d will stop at the end of a stream if the following data
35 * doesn't start with a lz4 signature.
40 * compressed in different ways.
52 skipping("lz4 reading not fully supported on this platform");
62 /* Read entries, match up names with list above. */
74 /* Verify the end-of-archive. */
77 /* Verify that the format detection worked. */
79 assertEqualString(archive_filter_name(a, 0), "lz4");
92 * then concatenated. Lz4 will emit the concatenated result. */
94 verify("test_compat_lz4_1.tar.lz4.uu", n);
96 * some unrelated garbage text has been appended to the end. */
97 verify("test_compat_lz4_2.tar.lz4.uu", n);
98 /* This sample has been compressed as a legacy stream. */
99 verify("test_compat_lz4_3.tar.lz4.uu", n);
100 /* This sample has been compressed with -B4 option. */
101 verify("test_compat_lz4_B4.tar.lz4.uu", n2);
102 /* This sample has been compressed with -B5 option. */
103 verify("test_compat_lz4_B5.tar.lz4.uu", n2);
104 /* This sample has been compressed with -B6 option. */
105 verify("test_compat_lz4_B6.tar.lz4.uu", n2);
106 /* This sample has been compressed with -B7 option. */
107 verify("test_compat_lz4_B7.tar.lz4.uu", n2);
108 /* This sample has been compressed with -B4 and -BD options. */
109 verify("test_compat_lz4_B4BD.tar.lz4.uu", n2);
110 /* This sample has been compressed with -B5 and -BD options. */
111 verify("test_compat_lz4_B5BD.tar.lz4.uu", n2);
112 /* This sample has been compressed with -B6 and -BD options. */
113 verify("test_compat_lz4_B6BD.tar.lz4.uu", n2);
114 /* This sample has been compressed with -B7 and -BD options. */
115 verify("test_compat_lz4_B7BD.tar.lz4.uu", n2);
116 /* This sample has been compressed with -B4 ,-BD and -BX options. */
117 verify("test_compat_lz4_B4BDBX.tar.lz4.uu", n2);