aboutsummaryrefslogtreecommitdiff
path: root/tests/test_files.sh
diff options
context:
space:
mode:
authorLasse Collin <lasse.collin@tukaani.org>2008-11-19 23:52:24 +0200
committerLasse Collin <lasse.collin@tukaani.org>2008-11-19 23:52:24 +0200
commit1880a3927b23f265f63b2adb86fbdb81ea09eb06 (patch)
tree2fe1b65d21f81b28f46eb707378d97f553e99ee1 /tests/test_files.sh
parentOh well, big messy commit again. Some highlights: (diff)
downloadxz-1880a3927b23f265f63b2adb86fbdb81ea09eb06.tar.xz
Renamed lzma to xz and lzmadec to xzdec. We create symlinks
lzma, unlzma, and lzcat in "make install" for backwards compatibility with LZMA Utils 4.32.x; I'm not sure if this should be the default though.
Diffstat (limited to '')
-rwxr-xr-xtests/test_files.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_files.sh b/tests/test_files.sh
index c670d728..b40a57a5 100755
--- a/tests/test_files.sh
+++ b/tests/test_files.sh
@@ -18,7 +18,7 @@
for I in "$srcdir"/files/good-*.xz
do
- if ../src/lzmadec/lzmadec "$I" > /dev/null 2> /dev/null ; then
+ if ../src/xzdec/xzdec "$I" > /dev/null 2> /dev/null ; then
:
else
echo "Good file failed: $I"
@@ -29,7 +29,7 @@ done
for I in "$srcdir"/files/bad-*.xz
do
- if ../src/lzmadec/lzmadec "$I" > /dev/null 2> /dev/null ; then
+ if ../src/xzdec/xzdec "$I" > /dev/null 2> /dev/null ; then
echo "Bad file succeeded: $I"
(exit 1)
exit 1