File size: 5,712 Bytes
78d2150 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 | #!/bin/sh
# Exercise ls --block-size and related options.
# Copyright (C) 2011-2025 Free Software Foundation, Inc.
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (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
# along with this program. If not, see <https://www.gnu.org/licenses/>.
. "${srcdir=.}/tests/init.sh"; path_prepend_ ./src
print_ver_ ls
TZ=UTC0
export TZ
mkdir sub
cd sub
for size in 1024 4096 262144; do
echo foo | dd conv=sync bs=$size >file$size || framework_failure_
done
touch -d '2001-01-01 00:00' file* || framework_failure_
size_etc='s/[^ ]* *[^ ]* *//'
ls -og * | sed "$size_etc" >../out || fail=1
POSIXLY_CORRECT=1 ls -og * | sed "$size_etc" >>../out || fail=1
POSIXLY_CORRECT=1 ls -k -og * | sed "$size_etc" >>../out || fail=1
for var in BLOCKSIZE BLOCK_SIZE LS_BLOCK_SIZE; do
for blocksize in 1 512 1K 1KiB; do
(eval $var=$blocksize && export $var &&
echo "x x # $var=$blocksize" &&
ls -og * &&
ls -og -k * &&
ls -og -k --block-size=$blocksize *
) | sed "$size_etc" >>../out || fail=1
done
done
cd ..
cat >exp <<'EOF'
1024 Jan 1 2001 file1024
262144 Jan 1 2001 file262144
4096 Jan 1 2001 file4096
1024 Jan 1 2001 file1024
262144 Jan 1 2001 file262144
4096 Jan 1 2001 file4096
1024 Jan 1 2001 file1024
262144 Jan 1 2001 file262144
4096 Jan 1 2001 file4096
# BLOCKSIZE=1
1024 Jan 1 2001 file1024
262144 Jan 1 2001 file262144
4096 Jan 1 2001 file4096
1024 Jan 1 2001 file1024
262144 Jan 1 2001 file262144
4096 Jan 1 2001 file4096
1024 Jan 1 2001 file1024
262144 Jan 1 2001 file262144
4096 Jan 1 2001 file4096
# BLOCKSIZE=512
1024 Jan 1 2001 file1024
262144 Jan 1 2001 file262144
4096 Jan 1 2001 file4096
1024 Jan 1 2001 file1024
262144 Jan 1 2001 file262144
4096 Jan 1 2001 file4096
2 Jan 1 2001 file1024
512 Jan 1 2001 file262144
8 Jan 1 2001 file4096
# BLOCKSIZE=1K
1024 Jan 1 2001 file1024
262144 Jan 1 2001 file262144
4096 Jan 1 2001 file4096
1024 Jan 1 2001 file1024
262144 Jan 1 2001 file262144
4096 Jan 1 2001 file4096
1 Jan 1 2001 file1024
256 Jan 1 2001 file262144
4 Jan 1 2001 file4096
# BLOCKSIZE=1KiB
1024 Jan 1 2001 file1024
262144 Jan 1 2001 file262144
4096 Jan 1 2001 file4096
1024 Jan 1 2001 file1024
262144 Jan 1 2001 file262144
4096 Jan 1 2001 file4096
1 Jan 1 2001 file1024
256 Jan 1 2001 file262144
4 Jan 1 2001 file4096
# BLOCK_SIZE=1
1024 Jan 1 2001 file1024
262144 Jan 1 2001 file262144
4096 Jan 1 2001 file4096
1024 Jan 1 2001 file1024
262144 Jan 1 2001 file262144
4096 Jan 1 2001 file4096
1024 Jan 1 2001 file1024
262144 Jan 1 2001 file262144
4096 Jan 1 2001 file4096
# BLOCK_SIZE=512
2 Jan 1 2001 file1024
512 Jan 1 2001 file262144
8 Jan 1 2001 file4096
2 Jan 1 2001 file1024
512 Jan 1 2001 file262144
8 Jan 1 2001 file4096
2 Jan 1 2001 file1024
512 Jan 1 2001 file262144
8 Jan 1 2001 file4096
# BLOCK_SIZE=1K
1 Jan 1 2001 file1024
256 Jan 1 2001 file262144
4 Jan 1 2001 file4096
1 Jan 1 2001 file1024
256 Jan 1 2001 file262144
4 Jan 1 2001 file4096
1 Jan 1 2001 file1024
256 Jan 1 2001 file262144
4 Jan 1 2001 file4096
# BLOCK_SIZE=1KiB
1 Jan 1 2001 file1024
256 Jan 1 2001 file262144
4 Jan 1 2001 file4096
1 Jan 1 2001 file1024
256 Jan 1 2001 file262144
4 Jan 1 2001 file4096
1 Jan 1 2001 file1024
256 Jan 1 2001 file262144
4 Jan 1 2001 file4096
# LS_BLOCK_SIZE=1
1024 Jan 1 2001 file1024
262144 Jan 1 2001 file262144
4096 Jan 1 2001 file4096
1024 Jan 1 2001 file1024
262144 Jan 1 2001 file262144
4096 Jan 1 2001 file4096
1024 Jan 1 2001 file1024
262144 Jan 1 2001 file262144
4096 Jan 1 2001 file4096
# LS_BLOCK_SIZE=512
2 Jan 1 2001 file1024
512 Jan 1 2001 file262144
8 Jan 1 2001 file4096
2 Jan 1 2001 file1024
512 Jan 1 2001 file262144
8 Jan 1 2001 file4096
2 Jan 1 2001 file1024
512 Jan 1 2001 file262144
8 Jan 1 2001 file4096
# LS_BLOCK_SIZE=1K
1 Jan 1 2001 file1024
256 Jan 1 2001 file262144
4 Jan 1 2001 file4096
1 Jan 1 2001 file1024
256 Jan 1 2001 file262144
4 Jan 1 2001 file4096
1 Jan 1 2001 file1024
256 Jan 1 2001 file262144
4 Jan 1 2001 file4096
# LS_BLOCK_SIZE=1KiB
1 Jan 1 2001 file1024
256 Jan 1 2001 file262144
4 Jan 1 2001 file4096
1 Jan 1 2001 file1024
256 Jan 1 2001 file262144
4 Jan 1 2001 file4096
1 Jan 1 2001 file1024
256 Jan 1 2001 file262144
4 Jan 1 2001 file4096
EOF
compare exp out || fail=1
# Ensure --size alignment with multi-byte grouping chars
# which wasn't the case before coreutils v9.8
cd sub
for sizem in 1 10; do
echo foo |
dd conv=sync bs=$((sizem*1024*1024)) >file${sizem}M || framework_failure_
done
# If any of these unavailable, the C fallback should also be aligned
for loc in sv_SE.UTF-8 $LOCALE_FR_UTF8; do
# Ensure we have a printable thousands separator
# This is not the case on FreeBSD 11/12 at least with NBSP
test $(LC_ALL=$loc ls -s1 --block-size=\'k file1M |
cut -dK -f1 | LC_ALL=$loc wc -L) = 5 || continue
test $(LC_ALL=$loc ls -s1 --block-size=\'k |
tail -n+2 | cut -dK -f1 |
while IFS= read size; do
printf '%s\n' "$size" | LC_ALL=$loc wc -L
done | uniq | wc -l) = 1 || fail=1
done
Exit $fail
|