Denys Vlasenko | bf22475 | 2009-11-29 19:09:29 +0100 | [diff] [blame] | 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 |