summaryrefslogtreecommitdiffstats
path: root/testsuite
diff options
context:
space:
mode:
authorDaniel Baumann <mail@daniel-baumann.ch>2015-11-07 14:26:15 +0000
committerDaniel Baumann <mail@daniel-baumann.ch>2015-11-07 14:26:15 +0000
commit1b2c0a7fbed3f7db4014104e4910db0cce8318a7 (patch)
tree5d2a0443190ee35505acb918be4f5645483d53bc /testsuite
parentAdding upstream version 1.1. (diff)
downloadpdlzip-1b2c0a7fbed3f7db4014104e4910db0cce8318a7.tar.xz
pdlzip-1b2c0a7fbed3f7db4014104e4910db0cce8318a7.zip
Adding upstream version 1.2.upstream/1.2
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to 'testsuite')
-rwxr-xr-xtestsuite/check.sh16
1 files changed, 13 insertions, 3 deletions
diff --git a/testsuite/check.sh b/testsuite/check.sh
index c619507..635a404 100755
--- a/testsuite/check.sh
+++ b/testsuite/check.sh
@@ -1,6 +1,6 @@
#! /bin/sh
-# check script for Pdlzip - A data compressor based on the LZMA algorithm
-# Copyright (C) 2010 Antonio Diaz Diaz.
+# check script for Pdlzip - Data compressor based on the LZMA algorithm
+# Copyright (C) 2010, 2011 Antonio Diaz Diaz.
#
# This script is free software: you have unlimited permission
# to copy, distribute and modify it.
@@ -19,18 +19,23 @@ fi
if [ -d tmp ] ; then rm -rf tmp ; fi
mkdir tmp
-printf "testing pdlzip..."
+printf "testing pdlzip-%s..." "$2"
cd "${objdir}"/tmp
cat "${testdir}"/test.txt > in || framework_failure
fail=0
"${LZIP}" -t "${testdir}"/test.lz || fail=1
+printf .
"${LZIP}" -cd "${testdir}"/test.lz > copy || fail=1
cmp in copy || fail=1
+printf .
+
"${LZIP}" -t "${testdir}"/test.lzma || fail=1
+printf .
"${LZIP}" -cd "${testdir}"/test.lzma > copy || fail=1
cmp in copy || fail=1
+printf .
for i in s4Ki 0 1 2 3 4 5 6 7 8s16 9s16 ; do
"${LZIP}" -k -$i in || fail=1
@@ -56,6 +61,11 @@ 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
+cmp in anyothername.out || fail=1
+printf .
+
echo
if [ ${fail} = 0 ] ; then
echo "tests completed successfully."