Home | History | Annotate | Download | only in tar

Lines Matching refs:tar

24 # Creates, lists and extracts an plain, gzip and bzip tar archive.
41 if [ -s tar.out ]; then
42 tst_res TFAIL "Tar produced unexpected output"
43 cat tar.out
45 tst_res TPASS "Tar produced no output"
51 if [ $(wc -l < tar.out) != $# ]; then
52 tst_res TFAIL "Unexpected number of lines in tar.out"
53 cat tar.out
58 if ! grep -q $i tar.out; then
64 tst_res TPASS "Listing in tar.out is correct"
73 EXPECT_PASS tar t${verbose}f "$fname" \> tar.out
82 cat tar.out
96 EXPECT_PASS tar x${verbose}f $fname \> tar.out
111 EXPECT_PASS tar c${verbose}f$comp $fname $TAR_FILES \> tar.out
115 EXPECT_PASS tar d${verbose}f $fname \> tar.out
129 EXPECT_PASS tar r${verbose}f $fname file4 \> tar.out
143 1) test_tar "" "v" "test.tar";;
144 2) test_tar "z" "v" "test.tar.gz";;
145 3) test_tar "j" "v" "test.tar.bz2";;
146 4) test_tar "" "" "test.tar";;
147 5) test_tar "z" "" "test.tar.gz";;
148 6) test_tar "j" "" "test.tar.bz2";;