diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-06 11:32:29 +0000 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-06 11:32:29 +0000 |
commit | 1ca0d3282eb7fd0872b93f18e4923b3f44f2f179 (patch) | |
tree | 3fe74ab2a59a6e2fc7ea35b993488cbc80d4135e /testsuite/check.sh | |
parent | Adding debian version 1.1-2. (diff) | |
download | clzip-1ca0d3282eb7fd0872b93f18e4923b3f44f2f179.tar.xz clzip-1ca0d3282eb7fd0872b93f18e4923b3f44f2f179.zip |
Merging upstream version 1.2.
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to 'testsuite/check.sh')
-rwxr-xr-x | testsuite/check.sh | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/testsuite/check.sh b/testsuite/check.sh index 4d1377e..50bec2e 100755 --- a/testsuite/check.sh +++ b/testsuite/check.sh @@ -37,6 +37,19 @@ printf . cmp in copy || fail=1 printf . +"${LZIP}" -t "${testdir}"/test_sync.lz || fail=1 +printf . +"${LZIP}" -cd "${testdir}"/test_sync.lz > copy || fail=1 +cmp in copy || fail=1 +printf . + +"${LZIP}" -cf "${testdir}"/test_v1.lz > out 2>/dev/null +if [ $? != 1 ] ; then fail=1 ; printf - ; else printf . ; fi +"${LZIP}" -cF "${testdir}"/test_v1.lz > out || fail=1 +"${LZIP}" -cd out | "${LZIP}" -d > copy || fail=1 +cmp in copy || fail=1 +printf . + for i in s4Ki 0 1 2 3 4 5 6 7 8 9 ; do "${LZIP}" -k -$i in || fail=1 mv -f in.lz copy.lz || fail=1 @@ -69,7 +82,7 @@ for i in s4Ki 0 1 2 3 4 5 6 7 8 9 ; do done "${LZIP}" -$i < in > anyothername || fail=1 -"${LZIP}" -dq anyothername || fail=1 +"${LZIP}" -d anyothername || fail=1 cmp in anyothername.out || fail=1 printf . |