diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2008-11-19 23:52:24 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2008-11-19 23:52:24 +0200 |
commit | 1880a3927b23f265f63b2adb86fbdb81ea09eb06 (patch) | |
tree | 2fe1b65d21f81b28f46eb707378d97f553e99ee1 /tests/test_files.sh | |
parent | Oh well, big messy commit again. Some highlights: (diff) | |
download | xz-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 'tests/test_files.sh')
-rwxr-xr-x | tests/test_files.sh | 4 |
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 |