mirror of
https://github.com/RsyncProject/rsync.git
synced 2026-03-29 19:51:16 -04:00
- use `grep -E` and `grep -F` (`egrep` and `fgrep` are non-standard) - use same hashbang style for all test scripts - use explicit comparisons in test scripts - remove redundant ; from test scripts - make test script not executable, just like all the other scripts - unify codestyle across all test scripts - make openssl license exception clearer by having it at the top - use modern links in COPYING. The text now matches: https://www.gnu.org/licenses/gpl-3.0.txt - fix typo
20 lines
433 B
Bash
20 lines
433 B
Bash
#!/bin/sh
|
|
|
|
# Test rsync copying atimes
|
|
|
|
. "$suitedir/rsync.fns"
|
|
|
|
$RSYNC --version | grep "[, ] atimes" >/dev/null || test_skipped "Rsync is configured without atimes support"
|
|
|
|
mkdir "$fromdir"
|
|
|
|
touch "$fromdir/foo"
|
|
touch -a -t 200102031717.42 "$fromdir/foo"
|
|
|
|
TLS_ARGS=--atimes
|
|
|
|
checkit "$RSYNC -rtUgvvv \"$fromdir/\" \"$todir/\"" "$fromdir" "$todir"
|
|
|
|
# The script would have aborted on error, so getting here means we've won.
|
|
exit 0
|