mirror of
https://https.git.savannah.gnu.org/git/coreutils.git
synced 2026-01-30 03:14:27 +00:00
* src/ls.c (quote_name): Use ST (ESC \) rather than BEL, as that's the only terminator mentioned in at least ECMA-48, DEC STD 070, and EK-VT520-RM. * NEWS: Mention the change in behavior. * tests/ls/hyperlink.sh: Adjust accordingly. Suggested by Egmont Koblinger.
66 lines
2.1 KiB
Bash
Executable File
66 lines
2.1 KiB
Bash
Executable File
#!/bin/sh
|
|
# Test --hyperlink processing
|
|
|
|
# Copyright (C) 2017-2026 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
|
|
|
|
# lookup based on first letter
|
|
encode() {
|
|
printf '%s\n' \
|
|
'sp%20ace' 'ques%3ftion' 'back%5cslash' 'encoded%253Fquestion' 'testdir' \
|
|
'an%23chor' 'utf8%c3%a1' 'invalidutf8%e9' 'col%3aon' \
|
|
"$1" |
|
|
sort -k1,1.1 -s | uniq -w1 -d
|
|
}
|
|
|
|
ls_encoded() {
|
|
ef=$(encode "$1")
|
|
echo "$ef" | grep 'dir$' >/dev/null && dir=: || dir=''
|
|
printf '\033]8;;file:///%s\033\\%s\033]8;;\033\\%s\n' \
|
|
"$ef" "$1" "$dir"
|
|
}
|
|
|
|
# These could be encoded, so remove from consideration
|
|
strip_host_and_path() {
|
|
sed 's|file://.*/|file:///|'
|
|
}
|
|
|
|
mkdir testdir || framework_failure_
|
|
(
|
|
cd testdir
|
|
ls_encoded "testdir" > ../exp.t || framework_failure_
|
|
for f in 'an#chor' 'back\slash' 'col:on' 'encoded%3Fquestion' \
|
|
"$(printf 'invalidutf8\351')" 'ques?tion' 'sp ace' 'utf8á'; do
|
|
touch "$f" || framework_failure_
|
|
ls_encoded "$f" >> ../exp.t || framework_failure_
|
|
done
|
|
)
|
|
ln -s testdir testdirl || framework_failure_
|
|
(cat exp.t && printf '\n' && sed 's|[^/]testdir|&l|' exp.t) > exp \
|
|
|| framework_failure_
|
|
ls --hyper testdir testdirl >out.t || fail=1
|
|
strip_host_and_path <out.t >out || framework_failure_
|
|
compare exp out || fail=1
|
|
|
|
ln -s '/probably_missing' testlink || framework_failure_
|
|
ls -l --hyper testlink > out.t || fail=1
|
|
strip_host_and_path <out.t >out || framework_failure_
|
|
grep 'file:///probably_missing' out || fail=1
|
|
|
|
Exit $fail
|