1#!/bin/sh
2# Exercise format strings involving %:X, %:Y, etc.
3
4# Copyright (C) 2010-2023 Free Software Foundation, Inc.
5
6# This program is free software: you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation, either version 3 of the License, or
9# (at your option) any later version.
10
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14# GNU General Public License for more details.
15
16# You should have received a copy of the GNU General Public License
17# along with this program.  If not, see <https://www.gnu.org/licenses/>.
18
19print_ver_ stat
20. "${srcdir=.}/tests/init.sh"; path_prepend_ ./src
21
22# Set this to avoid problems with weird time zones.
23TZ=UTC0
24export TZ
25
26# Use a timestamp near the Epoch to avoid trouble with leap seconds.
27touch -d '1970-01-01 18:43:33.023456789' k || framework_failure_
28
29ls --full-time | grep 18:43:33.023456789 \
30  || skip_ this file system does not support sub-second timestamps
31
32test "$(stat -c       %X k)" =    67413               || fail=1
33test "$(stat -c      %.X k)" =    67413.023456789     || fail=1
34test "$(stat -c     %.1X k)" =    67413.0             || fail=1
35test "$(stat -c     %.3X k)" =    67413.023           || fail=1
36test "$(stat -c     %.6X k)" =    67413.023456        || fail=1
37test "$(stat -c     %.9X k)" =    67413.023456789     || fail=1
38test "$(stat -c   %13.6X k)" =  ' 67413.023456'       || fail=1
39test "$(stat -c  %013.6X k)" =   067413.023456        || fail=1
40test "$(stat -c  %-13.6X k)" =   '67413.023456 '      || fail=1
41test "$(stat -c  %18.10X k)" = '  67413.0234567890'   || fail=1
42test "$(stat -c %I18.10X k)" = '  67413.0234567890'   || fail=1
43test "$(stat -c %018.10X k)" =  0067413.0234567890    || fail=1
44test "$(stat -c %-18.10X k)" =   '67413.0234567890  ' || fail=1
45
46Exit $fail
47