diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-06 14:10:12 +0000 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-06 14:10:12 +0000 |
commit | 25eafae4dd0413254ee3c83fc1411909e0c2ffcd (patch) | |
tree | c9a74398da104cedce5897329d73ae16fdbfb603 /testsuite/check.sh | |
parent | Adding debian version 1.1-3. (diff) | |
download | lunzip-25eafae4dd0413254ee3c83fc1411909e0c2ffcd.tar.xz lunzip-25eafae4dd0413254ee3c83fc1411909e0c2ffcd.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 | 21 |
1 files changed, 4 insertions, 17 deletions
diff --git a/testsuite/check.sh b/testsuite/check.sh index fea9d0a..8408109 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, 2012 Antonio Diaz Diaz. +# Copyright (C) 2010, 2011, 2012, 2013 Antonio Diaz Diaz. # # This script is free software: you have unlimited permission # to copy, distribute and modify it. @@ -23,27 +23,14 @@ cd "${objdir}"/tmp cat "${testdir}"/test.txt > in || framework_failure cat in in > in2 || framework_failure -cat "${testdir}"/test_v1.lz > in.lz || framework_failure +cat "${testdir}"/test.txt.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 -cmp in copy || fail=1 -printf . - -"${LZIP}" -t "${testdir}"/test_v1.lz || fail=1 -printf . -"${LZIP}" -cd "${testdir}"/test_v1.lz > copy || fail=1 -cmp in copy || fail=1 -printf . - -"${LZIP}" -t "${testdir}"/test_sync.lz || fail=1 -printf . -"${LZIP}" -cd "${testdir}"/test_sync.lz > copy || fail=1 +"${LZIP}" -t "${testdir}"/test.txt.lz || fail=1 +"${LZIP}" -cd "${testdir}"/test.txt.lz > copy || fail=1 cmp in copy || fail=1 printf . |