summaryrefslogtreecommitdiff
path: root/testsuite/crtimes.test
blob: 456f0a5f12aecdd17d153b5a40caaaba27f26d9a (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
#!/bin/sh

# Test rsync copying create times

. "$suitedir/rsync.fns"

$RSYNC -VV | grep '"crtimes": true' >/dev/null || test_skipped "Rsync is configured without crtimes support"

# Setting an older time via touch sets the create time to the mtime.
# Setting it to a newer time affects just the mtime.

mkdir "$fromdir"
echo hiho >"$fromdir/foo"

touch -t 200101011111.11 "$fromdir"
touch -t 200202022222.22 "$fromdir"

touch -t 200111111111.11 "$fromdir/foo"
touch -t 200212122222.22 "$fromdir/foo"

TLS_ARGS=--crtimes

checkit "$RSYNC -rtgvvv --crtimes \"$fromdir/\" \"$todir/\"" "$fromdir" "$todir"

# The script would have aborted on error, so getting here means we've won.
exit 0