diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2010-11-05 19:35:12 -0700 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2010-11-06 15:24:49 +0100 |
commit | c7375c236ca5fa23661388e9f9c41e8312eb0cce (patch) | |
tree | 37fc8fa9c0b9765ddbc491abdffef6146688cfbe /tests | |
parent | 312549b627b9cb634c5bc978bf3def44ea88be21 (diff) | |
download | coreutils-c7375c236ca5fa23661388e9f9c41e8312eb0cce.tar.xz |
stat: use e.g. %.3X instead of %X.%3:X for sub-second precision
* NEWS: Document this.
* doc/coreutils.texi (stat invocation): Likewise.
* gl/lib/fstimeprec.c, gl/lib/fstimeprec.h, gl/modules/fstimeprec:
* gl/modules/fstimeprec-tests, gl/tests/test-fstimeprec.c:
New files.
* bootstrap.conf (gnulib_modules): Add fstimeprec.
* src/stat.c: Include fstimeprec.h. Don't include xstrtol.h.
(decimal_point, decimal_point_len): New static vars.
(main): Initialize them.
(epoch_sec, out_ns): Remove.
(out_int, out_uint): Now returns whatever printf returned.
(out_minus_zero, out_epoch_secs): New functions.
(print_stat): Use out_epoch_sec instead of out_ns and epoch_sec.
(print_stat, print_it, usage): Remove the %:X-style formats.
* tests/misc/stat-nanoseconds: Set TZ=UTC0 to avoid problems
with weird time zones. Use a time stamp near the Epoch so that we
don't have to worry about leap seconds. Redo test cases to match
new behavior.
* tests/touch/60-seconds: Change %Y.%:Y to %.9Y, to adjust to
new behavior.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/misc/stat-nanoseconds | 27 | ||||
-rwxr-xr-x | tests/touch/60-seconds | 2 |
2 files changed, 19 insertions, 10 deletions
diff --git a/tests/misc/stat-nanoseconds b/tests/misc/stat-nanoseconds index 314f43e2c..0f41eb045 100755 --- a/tests/misc/stat-nanoseconds +++ b/tests/misc/stat-nanoseconds @@ -19,18 +19,27 @@ test "$VERBOSE" = yes && stat --version . "${srcdir=.}/init.sh"; path_prepend_ ../src -touch -d '2010-10-21 18:43:33.023456789' k || framework_failure_ +# Set this to avoid problems with weird time zones. +TZ=UTC0 +export TZ + +# Use a time stamp near the Epoch to avoid trouble with leap seconds. +touch -d '1970-01-01 18:43:33.023456789' k || framework_failure_ ls --full-time | grep 18:43:33.023456789 \ || skip_ this file system does not support sub-second time stamps -test "$(stat -c %:X k)" = 023456789 || fail=1 -test "$(stat -c %3:X k)" = 23456789 || fail=1 -test "$(stat -c %3.3:X k)" = 023 || fail=1 -test "$(stat -c %.3:X k)" = 023 || fail=1 -test "$(stat -c %03.3:X k)" = 023 || fail=1 -test "$(stat -c %-5.3:X k)" = '023 ' || fail=1 -test "$(stat -c %05.3:X k)" = ' 023' || fail=1 -test "$(stat -c %010.3:X k)" = ' 023' || fail=1 +test "$(stat -c %X k)" = 67413 || fail=1 +test "$(stat -c %.X k)" = 67413.023456789 || fail=1 +test "$(stat -c %.1X k)" = 67413.0 || fail=1 +test "$(stat -c %.3X k)" = 67413.023 || fail=1 +test "$(stat -c %.6X k)" = 67413.023456 || fail=1 +test "$(stat -c %.9X k)" = 67413.023456789 || fail=1 +test "$(stat -c %13.6X k)" = ' 67413.023456' || fail=1 +test "$(stat -c %013.6X k)" = 067413.023456 || fail=1 +test "$(stat -c %-13.6X k)" = '67413.023456 ' || fail=1 +test "$(stat -c %18.10X k)" = ' 67413.0234567890' || fail=1 +test "$(stat -c %018.10X k)" = 0067413.0234567890 || fail=1 +test "$(stat -c %-18.10X k)" = '67413.0234567890 ' || fail=1 Exit $fail diff --git a/tests/touch/60-seconds b/tests/touch/60-seconds index d0082967c..e06c770f2 100755 --- a/tests/touch/60-seconds +++ b/tests/touch/60-seconds @@ -30,7 +30,7 @@ echo 60.000000000 > exp || framework_failure # an `invalid date format'. Specifying 60 seconds *is* valid. TZ=UTC0 touch -t 197001010000.60 f || fail=1 -stat --p='%Y.%:Y\n' f > out || fail=1 +stat --p='%.9Y\n' f > out || fail=1 compare out exp || fail=1 |