diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-11-29 19:09:29 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-11-29 19:09:29 +0100 |
commit | bf22475e9552b08feb31d40250ab293d2fd98234 (patch) | |
tree | ac4b6d1079bcc802442ba7cdcd9196553ad6298f | |
parent | d43d628f8b7e8a88a3d0160255084201e3b34955 (diff) | |
download | busybox-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-x | testsuite/tar.tests | 35 |
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 | |||
7 | mkdir tempdir && cd tempdir || exit 1 | ||
8 | |||
9 | # testing "test name" "script" "expected result" "file input" "stdin" | ||
10 | |||
11 | testing "tar hardlinks and repeated files" \ | ||
12 | ">input_hard1 | ||
13 | ln input_hard1 input_hard2 | ||
14 | mkdir input_dir | ||
15 | >input_dir/file | ||
16 | tar cf test.tar input input_dir/ input_hard1 input_hard2 input_hard1 input_dir/ input | ||
17 | tar tvf test.tar | sed 's/.*[0-9] input/input/' | ||
18 | tar xf test.tar 2>&1 && echo Ok | ||
19 | " \ | ||
20 | "input | ||
21 | input_dir/ | ||
22 | input_dir/file | ||
23 | input_hard1 | ||
24 | input_hard2 -> input_hard1 | ||
25 | input_hard1 -> input_hard1 | ||
26 | input_dir/ | ||
27 | input_dir/file | ||
28 | input | ||
29 | Ok | ||
30 | " \ | ||
31 | "" "" | ||
32 | |||
33 | cd .. && rm -rf tempdir || exit 1 | ||
34 | |||
35 | exit $FAILCOUNT | ||