1998-01-10 11:00:46 +00:00
|
|
|
#!/bin/sh
|
1998-01-10 11:54:39 +00:00
|
|
|
# Test some of ls's sorting options.
|
1998-01-10 11:00:46 +00:00
|
|
|
|
2023-01-01 14:50:15 +00:00
|
|
|
# Copyright (C) 1998-2023 Free Software Foundation, Inc.
|
2006-08-17 19:58:17 +00:00
|
|
|
|
2007-07-23 14:35:58 +02:00
|
|
|
# This program is free software: you can redistribute it and/or modify
|
2006-08-17 19:58:17 +00:00
|
|
|
# it under the terms of the GNU General Public License as published by
|
2007-07-23 14:35:58 +02:00
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
2006-08-17 19:58:17 +00:00
|
|
|
# (at your option) any later version.
|
|
|
|
|
|
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
# You should have received a copy of the GNU General Public License
|
2017-09-19 01:13:23 -07:00
|
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2006-08-17 19:58:17 +00:00
|
|
|
|
2012-09-02 21:55:12 +02:00
|
|
|
. "${srcdir=.}/tests/init.sh"; path_prepend_ ./src
|
2010-11-17 21:35:31 +01:00
|
|
|
print_ver_ ls
|
2007-08-16 15:50:00 +02:00
|
|
|
|
2001-05-20 20:43:52 +00:00
|
|
|
# Avoid any possible glitches due to daylight-saving changes near the
|
2017-01-09 12:12:02 -08:00
|
|
|
# timestamps used during the test.
|
2001-05-20 20:43:52 +00:00
|
|
|
TZ=UTC0
|
|
|
|
|
export TZ
|
|
|
|
|
|
1998-01-22 08:27:16 +00:00
|
|
|
t1='1998-01-15 21:00'
|
|
|
|
|
t2='1998-01-15 22:00'
|
|
|
|
|
t3='1998-01-15 23:00'
|
|
|
|
|
|
|
|
|
|
u1='1998-01-14 11:00'
|
|
|
|
|
u2='1998-01-14 12:00'
|
|
|
|
|
u3='1998-01-14 13:00'
|
|
|
|
|
|
2011-08-04 20:52:31 +02:00
|
|
|
touch -m -d "$t3" a || framework_failure_
|
|
|
|
|
touch -m -d "$t2" b || framework_failure_
|
|
|
|
|
touch -m -d "$t1" c || framework_failure_
|
1998-01-22 08:27:16 +00:00
|
|
|
|
2011-08-04 20:52:31 +02:00
|
|
|
touch -a -d "$u3" c || framework_failure_
|
|
|
|
|
touch -a -d "$u2" b || framework_failure_
|
1998-05-30 21:34:21 +00:00
|
|
|
# Make sure A has ctime at least 1 second more recent than C's.
|
|
|
|
|
sleep 2
|
2011-08-04 20:52:31 +02:00
|
|
|
touch -a -d "$u1" a || framework_failure_
|
2012-03-16 12:51:04 +00:00
|
|
|
# Updating the atime is usually enough to update the ctime, but on
|
|
|
|
|
# Solaris 10's tmpfs, ctime is not updated, so force an update here:
|
|
|
|
|
{ ln a a-ctime && rm a-ctime; } || framework_failure_
|
1998-05-30 21:34:21 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
# A has ctime more recent than C.
|
2012-04-03 20:32:44 +02:00
|
|
|
set $(ls -c a c)
|
1998-05-30 21:34:21 +00:00
|
|
|
test "$*" = 'a c' || fail=1
|
1998-01-22 08:27:16 +00:00
|
|
|
|
1998-01-24 16:21:48 +00:00
|
|
|
# Sleep so long in an attempt to avoid spurious failures
|
|
|
|
|
# due to NFS caching and/or clock skew.
|
1998-05-30 21:34:21 +00:00
|
|
|
sleep 2
|
1998-01-10 11:54:39 +00:00
|
|
|
|
1998-01-24 16:21:48 +00:00
|
|
|
# Create a link, updating c's ctime.
|
2011-08-04 20:52:31 +02:00
|
|
|
ln c d || framework_failure_
|
1998-01-10 11:00:46 +00:00
|
|
|
|
1999-12-08 17:05:59 +00:00
|
|
|
# Before we go any further, verify that touch's -m option works.
|
2022-08-12 14:16:14 +01:00
|
|
|
set -- $(ls --full -l --time=mtime a)
|
1999-12-08 17:05:59 +00:00
|
|
|
case "$*" in
|
2001-05-20 20:43:52 +00:00
|
|
|
*" $t3:00.000000000 +0000 a") ;;
|
1999-12-08 17:05:59 +00:00
|
|
|
*)
|
|
|
|
|
# This might be what's making HPUX 11 systems fail this test.
|
2001-05-20 20:43:52 +00:00
|
|
|
cat >&2 << EOF
|
|
|
|
|
A basic test of touch -m has just failed, so the subsequent
|
1999-12-08 17:05:59 +00:00
|
|
|
tests in this file will not be run.
|
2000-09-23 19:27:33 +00:00
|
|
|
|
2012-01-07 17:43:50 +01:00
|
|
|
In the output below, the date of last modification for 'a' should
|
2001-05-20 20:43:52 +00:00
|
|
|
have been $t3.
|
1999-12-08 17:05:59 +00:00
|
|
|
EOF
|
2000-09-23 19:27:33 +00:00
|
|
|
ls --full -l a
|
2016-11-29 21:15:59 +00:00
|
|
|
skip_ "touch -m -d '$t3' didn't work"
|
1999-12-08 17:05:59 +00:00
|
|
|
;;
|
|
|
|
|
esac
|
|
|
|
|
|
2010-03-29 08:21:43 +02:00
|
|
|
# Ensure that touch's -a option works.
|
2012-04-03 20:32:44 +02:00
|
|
|
set -- $(ls --full -lu a)
|
1999-12-08 17:05:59 +00:00
|
|
|
case "$*" in
|
2001-05-20 20:43:52 +00:00
|
|
|
*" $u1:00.000000000 +0000 a") ;;
|
1999-12-08 17:05:59 +00:00
|
|
|
*)
|
|
|
|
|
# This might be what's making HPUX 11 systems fail this test.
|
2001-05-20 20:43:52 +00:00
|
|
|
cat >&2 << EOF
|
2010-03-29 08:21:43 +02:00
|
|
|
A fundamental touch -a test has just failed, so the subsequent
|
1999-12-08 17:05:59 +00:00
|
|
|
tests in this file will not be run.
|
2000-09-23 19:27:33 +00:00
|
|
|
|
2012-01-07 17:43:50 +01:00
|
|
|
In the output below, the date of last access for 'a' should
|
2001-05-20 20:43:52 +00:00
|
|
|
have been $u1.
|
1999-12-08 17:05:59 +00:00
|
|
|
EOF
|
2000-09-23 19:27:33 +00:00
|
|
|
ls --full -lu a
|
2008-09-07 10:31:27 +02:00
|
|
|
Exit 77
|
1999-12-08 17:05:59 +00:00
|
|
|
;;
|
|
|
|
|
esac
|
|
|
|
|
|
2012-04-03 20:32:44 +02:00
|
|
|
set $(ls -ut a b c)
|
1998-01-22 08:27:16 +00:00
|
|
|
test "$*" = 'c b a' && : || fail=1
|
1999-12-04 17:31:23 +00:00
|
|
|
test $fail = 1 && ls -l --full-time --time=access a b c
|
1998-01-10 11:54:39 +00:00
|
|
|
|
2012-04-03 20:32:44 +02:00
|
|
|
set $(ls -t a b c)
|
1998-01-22 08:27:16 +00:00
|
|
|
test "$*" = 'a b c' && : || fail=1
|
1999-12-04 17:31:23 +00:00
|
|
|
test $fail = 1 && ls -l --full-time a b c
|
1998-01-10 11:00:46 +00:00
|
|
|
|
1998-05-30 21:34:21 +00:00
|
|
|
# Now, C should have ctime more recent than A.
|
2012-04-03 20:32:44 +02:00
|
|
|
set $(ls -ct a c)
|
1998-01-24 16:21:48 +00:00
|
|
|
if test "$*" = 'c a'; then
|
|
|
|
|
: ok
|
|
|
|
|
else
|
1998-01-24 16:27:26 +00:00
|
|
|
# In spite of documentation, (e.g., stat(2)), neither link nor chmod
|
|
|
|
|
# update a file's st_ctime on SunOS4.1.4.
|
1998-05-30 21:34:21 +00:00
|
|
|
cat >&2 << \EOF
|
2000-09-23 19:27:33 +00:00
|
|
|
failed ls ctime test -- this failure is expected at least for SunOS4.1.4
|
1998-05-30 21:34:21 +00:00
|
|
|
and for tmpfs file systems on Solaris 5.5.1.
|
2010-10-26 16:34:51 +02:00
|
|
|
It is also expected to fail on a btrfs file system until
|
2017-01-14 22:57:51 -08:00
|
|
|
https://bugzilla.redhat.com/591068 is addressed.
|
2000-09-23 19:27:33 +00:00
|
|
|
|
2012-01-07 17:47:58 +01:00
|
|
|
In the output below, 'c' should have had a ctime more recent than
|
|
|
|
|
that of 'a', but does not.
|
1998-05-30 21:34:21 +00:00
|
|
|
EOF
|
2000-09-23 19:27:33 +00:00
|
|
|
#'
|
|
|
|
|
ls -ctl --full-time a c
|
1998-01-24 16:21:48 +00:00
|
|
|
fail=1
|
|
|
|
|
fi
|
1998-01-10 11:54:39 +00:00
|
|
|
|
2009-09-28 17:32:15 +01:00
|
|
|
# This check is ineffective if:
|
|
|
|
|
# en_US locale is not on the system.
|
|
|
|
|
# The system en_US message catalog has a specific TIME_FMT translation,
|
|
|
|
|
# which was inadvertently the case between coreutils 8.1 and 8.5 inclusive.
|
|
|
|
|
|
|
|
|
|
if gettext --version >/dev/null 2>&1; then
|
|
|
|
|
|
|
|
|
|
default_tf1='%b %e %Y'
|
|
|
|
|
en_tf1=$(LC_ALL=en_US gettext coreutils "$default_tf1")
|
|
|
|
|
|
|
|
|
|
if test "$default_tf1" = "$en_tf1"; then
|
|
|
|
|
LC_ALL=en_US ls -l c >en_output
|
|
|
|
|
ls -l --time-style=long-iso c >liso_output
|
|
|
|
|
if compare en_output liso_output; then
|
|
|
|
|
fail=1
|
|
|
|
|
echo "Long ISO TIME_FMT being used for en_US locale." >&2
|
|
|
|
|
fi
|
|
|
|
|
fi
|
|
|
|
|
fi
|
|
|
|
|
|
2008-09-07 10:31:27 +02:00
|
|
|
Exit $fail
|