1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
#!/usr/bin/env bash
#
# Copyright (c) 2011, 2012, Simon Howard
#
# Permission to use, copy, modify, and/or distribute this software
# for any purpose with or without fee is hereby granted, provided
# that the above copyright notice and this permission notice appear
# in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
# WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
# WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
# AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR
# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
# LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
# CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#
#
# Test script that tests the extract functionality.
# This script tests archives generated by various MS-DOS tools.
#
. test_extract.sh
test_archive larc333/lz4.lzs "gpl-2.gz"
test_archive larc333/lz5.lzs "gpl-2"
test_archive larc333/sfx.com "gpl-2.gz"
test_archive larc333/subdir.lzs "subdir/subdir2/hello.txt"
test_archive larc333/long.lzs "long.txt"
test_archive larc333/initial.lzs "initial.bin"
test_archive lharc113/lh0.lzh "gpl-2.gz"
test_archive lharc113/lh1.lzh "gpl-2"
test_archive lharc113/sfx.com "gpl-2"
test_archive lharc113/subdir.lzh "subdir/subdir2/hello.txt"
test_archive lharc113/long.lzh "long.txt"
test_archive lha213/lh0.lzh "gpl-2.gz"
test_archive lha213/lh5.lzh "gpl-2"
test_archive lha213/lh5_long.lzh "long.txt"
test_archive lha213/sfx.exe "gpl-2"
test_archive lha213/subdir.lzh "subdir/subdir2/hello.txt"
test_archive lha255e/lh0.lzh "gpl-2.gz"
test_archive lha255e/lh5.lzh "gpl-2"
test_archive lha255e/sfx.exe "gpl-2"
test_archive lha255e/subdir.lzh "subdir/subdir2/hello.txt"
test_archive lhark04d/lh0.lzh "gpl-2.gz"
test_archive lhark04d/lh5.lzh "gpl-2"
test_archive lhark04d/lh7.lzh "gpl-2"
test_archive lhark04d/lh7_long.lzh "long.txt"
test_archive pmarc124/pm0.pma "gpl-2.gz"
test_archive pmarc124/pm1.pma "copying.txt"
test_archive pmarc124/pm1_long.pma "long.txt"
test_archive pmarc124/mtcd.pma "mtcd.doc" "cd.mtc"
test_archive pmarc2/pm0.pma "gpl-2.gz"
test_archive pmarc2/pm2.pma "gpl-2."
test_archive pmarc2/comment.pma "hello.txt"
test_archive pmarc2/sfx.com "gpl-2."
test_archive pmarc2/long.pma "long.txt"
|