Lines Matching full:tar
24 TAR='tar c --owner root --group root --mtime @1234567890'
27 LST='tar tv | sed "s/[ \t][ \t]*/ /g"'
30 testing "create file" "$TAR file | $SUM" \
33 testing "pass file" "$TAR file | $LST" \
39 testing "pass user" "tar -c --owner nobody --group root --mtime @0 file | $LST" \
42 testing "pass group" "tar c --owner root --group nobody --mtime @0 file | $LST" \
47 "tar c --owner root --group root file | tar tv --full-time | sed 's/[ \t][ \t]*/ /g'" \
51 testing "create dir" "$TAR dir | $SUM" \
54 testing "pass dir" "$TAR dir | $LST" \
59 testing "create file in dir" "$TAR dir/file | $SUM" \
63 testing "create dir and dir/file" "$TAR dir | $SUM" \
66 testing "pass dir/file" "$TAR dir | $LST" \
71 testing "create symlink" "$TAR dir/link | $SUM" \
76 testing "create hardlink" "$TAR dir/file dir/hardlink | $SUM" \
80 testing "create hardlink to symlink" "$TAR dir/link dir/hlink | $SUM" \
84 testing "create dir/fifo" "$TAR dir/fifo | $SUM" \
91 testing "create longfilename" "$TAR dir/${LONG:1:97} dir/${LONG:1:96} | $SUM" \
97 "tar c --mtime @0 /dev/null 2>/dev/null | $LST" \
101 "tar c --numeric-owner --mtime @0 /dev/loop0 2>/dev/null | $LST" \
105 testing "create char2" "$TAR /dev/null | $SUM" \
108 #testing "create block" "$TAR /dev/
111 testing "create dir/block" "$TAR dir/block | $SUM" \
115 testing "ownership" "$TAR dir/block | $SUM" \
120 unset LONG TAR SUM OLDUMASK OLDTZ LST