diff options
author | Daniel Baumann <daniel@debian.org> | 2025-02-05 17:24:21 +0000 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2025-02-05 17:24:21 +0000 |
commit | 7ea2c0fae69eedfccc4c5dcfb058aac4162d7bb7 (patch) | |
tree | 91354df424e491350a1454f46357ce492e138445 /testsuite/check.sh | |
parent | Updating vcs fields. (diff) | |
download | lzip-7ea2c0fae69eedfccc4c5dcfb058aac4162d7bb7.tar.xz lzip-7ea2c0fae69eedfccc4c5dcfb058aac4162d7bb7.zip |
Merging upstream version 1.15~rc1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
Diffstat (limited to '')
-rwxr-xr-x | testsuite/check.sh | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/testsuite/check.sh b/testsuite/check.sh index 8adf23b..8d6bb79 100755 --- a/testsuite/check.sh +++ b/testsuite/check.sh @@ -1,5 +1,5 @@ #! /bin/sh -# check script for Lzip - Data compressor based on the LZMA algorithm +# check script for Lzip - LZMA lossless data compressor # Copyright (C) 2008, 2009, 2010, 2011, 2012, 2013 Antonio Diaz Diaz. # # This script is free software: you have unlimited permission @@ -35,6 +35,18 @@ if [ $? = 1 ] ; then printf . ; else fail=1 ; printf - ; fi if [ $? = 1 ] ; then printf . ; else fail=1 ; printf - ; fi "${LZIP}" -cqm274 in > /dev/null if [ $? = 1 ] ; then printf . ; else fail=1 ; printf - ; fi +"${LZIP}" -tq in +if [ $? = 2 ] ; then printf . ; else fail=1 ; printf - ; fi +"${LZIP}" -tq < in +if [ $? = 2 ] ; then printf . ; else fail=1 ; printf - ; fi +"${LZIP}" -cdq in +if [ $? = 2 ] ; then printf . ; else fail=1 ; printf - ; fi +"${LZIP}" -cdq < in +if [ $? = 2 ] ; then printf . ; else fail=1 ; printf - ; fi +dd if="${in_lz}" bs=1 count=6 2> /dev/null | "${LZIP}" -tq +if [ $? = 2 ] ; then printf . ; else printf - ; fail=1 ; fi +dd if="${in_lz}" bs=1 count=20 2> /dev/null | "${LZIP}" -tq +if [ $? = 2 ] ; then printf . ; else printf - ; fail=1 ; fi "${LZIP}" -t "${in_lz}" || fail=1 "${LZIP}" -cd "${in_lz}" > copy || fail=1 |