aboutsummaryrefslogtreecommitdiff
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
parentd43d628f8b7e8a88a3d0160255084201e3b34955 (diff)
downloadbusybox-w32-bf22475e9552b08feb31d40250ab293d2fd98234.tar.gz
busybox-w32-bf22475e9552b08feb31d40250ab293d2fd98234.tar.bz2
busybox-w32-bf22475e9552b08feb31d40250ab293d2fd98234.zip
tar: add a test for latest fix
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-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 @@
1#!/bin/sh
2# Copyright 2009 by Denys Vlasenko
3# Licensed under GPL v2, see file LICENSE for details.
4
5. ./testing.sh
6
7mkdir tempdir && cd tempdir || exit 1
8
9# testing "test name" "script" "expected result" "file input" "stdin"
10
11testing "tar hardlinks and repeated files" \
12">input_hard1
13ln input_hard1 input_hard2
14mkdir input_dir
15>input_dir/file
16tar cf test.tar input input_dir/ input_hard1 input_hard2 input_hard1 input_dir/ input
17tar tvf test.tar | sed 's/.*[0-9] input/input/'
18tar xf test.tar 2>&1 && echo Ok
19" \
20"input
21input_dir/
22input_dir/file
23input_hard1
24input_hard2 -> input_hard1
25input_hard1 -> input_hard1
26input_dir/
27input_dir/file
28input
29Ok
30" \
31"" ""
32
33cd .. && rm -rf tempdir || exit 1
34
35exit $FAILCOUNT