aboutsummaryrefslogtreecommitdiff
path: root/testsuite/tar
diff options
context:
space:
mode:
authorMatt Kraai <kraai@debian.org>2002-02-17 18:42:52 +0000
committerMatt Kraai <kraai@debian.org>2002-02-17 18:42:52 +0000
commitc00e4ff8e565619761b0de89988643f21a8057d3 (patch)
tree24177c603ae493619e5e68697d4f0ba8cbfe1bcc /testsuite/tar
parent3b7767abe6c30f2dffbd6bb02b765945a35aec17 (diff)
downloadbusybox-c00e4ff8e565619761b0de89988643f21a8057d3.tar.gz
* testsuite/tar/tar-archives-multiple-files: New.
Diffstat (limited to 'testsuite/tar')
-rw-r--r--testsuite/tar/tar-archives-multiple-files5
1 files changed, 5 insertions, 0 deletions
diff --git a/testsuite/tar/tar-archives-multiple-files b/testsuite/tar/tar-archives-multiple-files
new file mode 100644
index 000000000..997291e26
--- /dev/null
+++ b/testsuite/tar/tar-archives-multiple-files
@@ -0,0 +1,5 @@
+touch foo bar
+busybox tar cf foo.tar foo bar
+rm foo bar
+tar xf foo.tar
+test -f foo -a -f bar