diff options
-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 | ||