diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-06 13:15:19 +0000 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-06 13:15:19 +0000 |
commit | a9f7e3c05d7a1f40bfbcacc85fe3f785adac1fae (patch) | |
tree | fa2f02fdb4580caa0afdd4736ab7ee40251a107d /testsuite/check.sh | |
parent | Adding debian version 1.0-3. (diff) | |
download | lunzip-a9f7e3c05d7a1f40bfbcacc85fe3f785adac1fae.tar.xz lunzip-a9f7e3c05d7a1f40bfbcacc85fe3f785adac1fae.zip |
Merging upstream version 1.1.
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to 'testsuite/check.sh')
-rwxr-xr-x | testsuite/check.sh | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/testsuite/check.sh b/testsuite/check.sh index f1e6c17..fea9d0a 100755 --- a/testsuite/check.sh +++ b/testsuite/check.sh @@ -1,6 +1,6 @@ #! /bin/sh # check script for Lunzip - Decompressor for lzip files -# Copyright (C) 2010, 2011 Antonio Diaz Diaz. +# Copyright (C) 2010, 2011, 2012 Antonio Diaz Diaz. # # This script is free software: you have unlimited permission # to copy, distribute and modify it. @@ -19,7 +19,6 @@ fi if [ -d tmp ] ; then rm -rf tmp ; fi mkdir tmp -printf "testing lunzip-%s..." "$2" cd "${objdir}"/tmp cat "${testdir}"/test.txt > in || framework_failure @@ -28,6 +27,8 @@ cat "${testdir}"/test_v1.lz > in.lz || framework_failure cat in.lz in.lz > in2.lz || framework_failure fail=0 +printf "testing lunzip-%s..." "$2" + "${LZIP}" -t "${testdir}"/test_v0.lz || fail=1 printf . "${LZIP}" -cd "${testdir}"/test_v0.lz > copy || fail=1 @@ -40,6 +41,12 @@ 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}" -t in2.lz || fail=1 printf . "${LZIP}" -cd in2.lz > copy2 || fail=1 @@ -55,14 +62,13 @@ printf . cmp in2 copy2 || fail=1 printf . -cat in.lz > out.lz || framework_failure printf "to be overwritten" > copy || framework_failure -"${LZIP}" -df -o copy < out.lz || fail=1 +"${LZIP}" -df -o copy < in.lz || fail=1 cmp in copy || fail=1 printf . cat in.lz > anyothername || framework_failure -"${LZIP}" -q anyothername || fail=1 +"${LZIP}" -d anyothername || fail=1 cmp in anyothername.out || fail=1 printf . |