aboutsummaryrefslogtreecommitdiff
path: root/testsuite/tar.tests
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-11-29 19:09:29 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2009-11-29 19:09:29 +0100
commitbf22475e9552b08feb31d40250ab293d2fd98234 (patch)
treeac4b6d1079bcc802442ba7cdcd9196553ad6298f /testsuite/tar.tests
parentd43d628f8b7e8a88a3d0160255084201e3b34955 (diff)
downloadbusybox-bf22475e9552b08feb31d40250ab293d2fd98234.tar.gz
tar: add a test for latest fix
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'testsuite/tar.tests')
-rwxr-xr-xtestsuite/tar.tests35
1 files changed, 35 insertions, 0 deletions
diff --git a/testsuite/tar.tests b/testsuite/tar.tests
new file mode 100755
index 000000000..0d4fa4584
--- /dev/null
+++ b/testsuite/tar.tests
@@ -0,0 +1,35 @@
+#!/bin/sh
+# Copyright 2009 by Denys Vlasenko
+# Licensed under GPL v2, see file LICENSE for details.
+
+. ./testing.sh
+
+mkdir tempdir && cd tempdir || exit 1
+
+# testing "test name" "script" "expected result" "file input" "stdin"
+
+testing "tar hardlinks and repeated files" \
+">input_hard1
+ln input_hard1 input_hard2
+mkdir input_dir
+>input_dir/file
+tar cf test.tar input input_dir/ input_hard1 input_hard2 input_hard1 input_dir/ input
+tar tvf test.tar | sed 's/.*[0-9] input/input/'
+tar xf test.tar 2>&1 && echo Ok
+" \
+"input
+input_dir/
+input_dir/file
+input_hard1
+input_hard2 -> input_hard1
+input_hard1 -> input_hard1
+input_dir/
+input_dir/file
+input
+Ok
+" \
+"" ""
+
+cd .. && rm -rf tempdir || exit 1
+
+exit $FAILCOUNT