summaryrefslogtreecommitdiffstats
path: root/tests/posix/atime.sh
blob: 25dfd7e20d2c6a9fa068479613a1235f4cb83e0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
cd "$TEST"

now=$(epoch_time)

"$XTOUCH" -at "@$((now - 60 * 60 * 24 * 7))" last_week
"$XTOUCH" -at "@$((now - 60 * 60 * 49))" two_days_ago
"$XTOUCH" -at "@$((now - 60 * 60 * 25))" yesterday
"$XTOUCH" -at "@$((now - 60 * 60))" one_hour_ago
"$XTOUCH" -at "@$((now))" now
"$XTOUCH" -at "@$((now + 60 * 60 * 24))" tomorrow

bfs_diff . \! -name . \
    \( -atime -1 -exec printf -- '-atime -1: %s\n' {} \; -o -prune \) \
    \( -atime  1 -exec printf -- '-atime  1: %s\n' {} \; -o -prune \) \
    \( -atime +1 -exec printf -- '-atime +1: %s\n' {} \; -o -prune \)