diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2008-09-30 17:43:55 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2008-09-30 17:43:55 +0300 |
commit | 4c321a41c482821aa3c4d64cdf886a6ed904d844 (patch) | |
tree | c5f5ddec2c238bf48e245950119e8576d70578bd /tests/test_files.sh | |
parent | Fixed Stream decoder to actually use the first_stream variable. (diff) | |
download | xz-4c321a41c482821aa3c4d64cdf886a6ed904d844.tar.xz |
Renamed the test files from .lzma suffix to .xz suffix.
Diffstat (limited to 'tests/test_files.sh')
-rwxr-xr-x | tests/test_files.sh | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/test_files.sh b/tests/test_files.sh index 71b43a0b..c670d728 100755 --- a/tests/test_files.sh +++ b/tests/test_files.sh @@ -16,7 +16,7 @@ # ############################################################################### -for I in "$srcdir"/files/good-*.lzma +for I in "$srcdir"/files/good-*.xz do if ../src/lzmadec/lzmadec "$I" > /dev/null 2> /dev/null ; then : @@ -27,7 +27,7 @@ do fi done -for I in "$srcdir"/files/bad-*.lzma +for I in "$srcdir"/files/bad-*.xz do if ../src/lzmadec/lzmadec "$I" > /dev/null 2> /dev/null ; then echo "Bad file succeeded: $I" @@ -36,7 +36,5 @@ do fi done -# TODO: Test malicious files too, but with care. - (exit 0) exit 0 |