diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-07 14:28:27 +0000 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-07 14:28:27 +0000 |
commit | 737720be9b1044b501bc5a86a9835b4b9fdeadd3 (patch) | |
tree | 5216723def3c97daadf56bb5fd068d1996e91a42 /testsuite/check.sh | |
parent | Adding debian version 1.2-4. (diff) | |
download | pdlzip-737720be9b1044b501bc5a86a9835b4b9fdeadd3.tar.xz pdlzip-737720be9b1044b501bc5a86a9835b4b9fdeadd3.zip |
Merging upstream version 1.3.
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to 'testsuite/check.sh')
-rwxr-xr-x | testsuite/check.sh | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/testsuite/check.sh b/testsuite/check.sh index 635a404..ea7a6cc 100755 --- a/testsuite/check.sh +++ b/testsuite/check.sh @@ -1,6 +1,6 @@ #! /bin/sh # check script for Pdlzip - Data compressor based on the LZMA algorithm -# 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,12 +19,13 @@ fi if [ -d tmp ] ; then rm -rf tmp ; fi mkdir tmp -printf "testing pdlzip-%s..." "$2" cd "${objdir}"/tmp cat "${testdir}"/test.txt > in || framework_failure fail=0 +printf "testing pdlzip-%s..." "$2" + "${LZIP}" -t "${testdir}"/test.lz || fail=1 printf . "${LZIP}" -cd "${testdir}"/test.lz > copy || fail=1 @@ -61,8 +62,8 @@ for i in s4Ki 0 1 2 3 4 5 6 7 8s16 9s16 ; do printf . done -"${LZIP}" -$i < in > anyothername || fail=1 -"${LZIP}" -dq anyothername || fail=1 +"${LZIP}" < in > anyothername || fail=1 +"${LZIP}" -d anyothername || fail=1 cmp in anyothername.out || fail=1 printf . |