aboutsummaryrefslogtreecommitdiff
path: root/testsuite/tar.tests
blob: 0d4fa45848766d64278f094617881bdcffe7401d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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