mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-02-24 15:04:13 +00:00
525 lines
21 KiB
Bash
Executable file
525 lines
21 KiB
Bash
Executable file
########################################################################
|
|
# #
|
|
# This software is part of the ast package #
|
|
# Copyright (c) 1982-2012 AT&T Intellectual Property #
|
|
# Copyright (c) 2020-2021 Contributors to ksh 93u+m #
|
|
# and is licensed under the #
|
|
# Eclipse Public License, Version 1.0 #
|
|
# by AT&T Intellectual Property #
|
|
# #
|
|
# A copy of the License is available at #
|
|
# http://www.eclipse.org/org/documents/epl-v10.html #
|
|
# (with md5 checksum b35adb5213ca9657e911e9befb180842) #
|
|
# #
|
|
# Information and Software Systems Research #
|
|
# AT&T Research #
|
|
# Florham Park NJ #
|
|
# #
|
|
# David Korn <dgk@research.att.com> #
|
|
# #
|
|
########################################################################
|
|
|
|
. "${SHTESTS_COMMON:-${0%/*}/_common}"
|
|
|
|
bincat=$(whence -p cat)
|
|
|
|
f=$tmp/here1
|
|
g=$tmp/here2
|
|
cat > $f <<!
|
|
hello world
|
|
!
|
|
if [[ $(<$f) != 'hello world' ]]
|
|
then err_exit "'hello world' here doc not working"
|
|
fi
|
|
cat > $g <<\!
|
|
hello world
|
|
!
|
|
cmp $f $g 2> /dev/null || err_exit "'hello world' quoted here doc not working"
|
|
cat > $g <<- !
|
|
hello world
|
|
!
|
|
cmp $f $g 2> /dev/null || err_exit "'hello world' tabbed here doc not working"
|
|
cat > $g <<- \!
|
|
hello world
|
|
!
|
|
cmp $f $g 2> /dev/null || err_exit "'hello world' quoted tabbed here doc not working"
|
|
x=hello
|
|
cat > $g <<!
|
|
$x world
|
|
!
|
|
cmp $f $g 2> /dev/null || err_exit "'$x world' here doc not working"
|
|
cat > $g <<!
|
|
$(print hello) world
|
|
!
|
|
cmp $f $g 2> /dev/null || err_exit "'$(print hello) world' here doc not working"
|
|
cat > $f <<\!!
|
|
!@#$%%^^&*()_+~"::~;'`<>?/.,{}[]
|
|
!!
|
|
if [[ $(<$f) != '!@#$%%^^&*()_+~"::~;'\''`<>?/.,{}[]' ]]
|
|
then err_exit "'hello world' here doc not working"
|
|
fi
|
|
cat > $g <<!!
|
|
!@#\$%%^^&*()_+~"::~;'\`<>?/.,{}[]
|
|
!!
|
|
cmp $f $g 2> /dev/null || err_exit "unquoted here doc not working"
|
|
exec 3<<!
|
|
foo
|
|
!
|
|
if [[ $(<&3) != ' foo' ]]
|
|
then err_exit "leading tabs stripped with <<!"
|
|
fi
|
|
$SHELL -c "
|
|
eval `echo 'cat <<x'` "|| err_exit "eval `echo 'cat <<x'` core dumps"
|
|
cat > /dev/null <<EOF # comments should not cause core dumps
|
|
abc
|
|
EOF
|
|
cat >$g << :
|
|
:
|
|
:
|
|
cmp /dev/null $g 2> /dev/null || err_exit "empty here doc not working"
|
|
x=$(print $( cat <<HUP
|
|
hello
|
|
HUP
|
|
)
|
|
)
|
|
if [[ $x != hello ]]
|
|
then err_exit "here doc inside command sub not working"
|
|
fi
|
|
y=$(cat <<!
|
|
${x:+${x}}
|
|
!
|
|
)
|
|
if [[ $y != "${x:+${x}}" ]]
|
|
then err_exit '${x:+${x}} not working in here document'
|
|
fi
|
|
$SHELL -c '
|
|
x=0
|
|
while (( x < 100 ))
|
|
do ((x = x+1))
|
|
cat << EOF
|
|
EOF
|
|
done
|
|
' 2> /dev/null || err_exit '100 empty here docs fails'
|
|
{
|
|
print 'builtin -d cat
|
|
cat <<- EOF'
|
|
for ((i=0; i < 100; i++))
|
|
do print XXXXXXXXXXXXXXXXXXXX
|
|
done
|
|
print ' XXX$(date)XXXX
|
|
EOF'
|
|
} > $f
|
|
chmod +x "$f"
|
|
$SHELL "$f" > /dev/null || err_exit "large here-doc with command substitution fails"
|
|
x=$("$bincat" <<!
|
|
$0
|
|
!
|
|
)
|
|
[[ "$x" == "$0" ]] || err_exit '$0 not correct inside here documents'
|
|
$SHELL -c 'x=$(
|
|
cat << EOF
|
|
EOF)' 2> /dev/null || err_exit 'here-doc cannot be terminated by )'
|
|
if [[ $( IFS=:;cat <<-!
|
|
$IFS$(print hi)$IFS
|
|
!) != :hi: ]]
|
|
then err_exit '$IFS unset by command substitution in here docs'
|
|
fi
|
|
if x=$($SHELL -c 'cat <<< "hello world"' 2> /dev/null)
|
|
then [[ $x == 'hello world' ]] || err_exit '<<< documents not working'
|
|
x=$($SHELL -c 'v="hello world";cat <<< $v' 2> /dev/null)
|
|
[[ $x == 'hello world' ]] || err_exit '<<< documents with $x not working'
|
|
x=$($SHELL -c 'v="hello world";cat <<< "$v"' 2> /dev/null)
|
|
[[ $x == 'hello world' ]] || err_exit '<<< documents with $x not working'
|
|
else err_exit '<<< syntax not supported'
|
|
fi
|
|
if [[ $(cat << EOF #testing
|
|
#abc
|
|
abc
|
|
EOF) != $'#abc\nabc' ]]
|
|
then err_exit 'comments not preserved in here-documents'
|
|
fi
|
|
cat > "$f" <<- '!!!!'
|
|
builtin cat
|
|
: << EOF
|
|
$PWD
|
|
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
EOF
|
|
command exec 3>&- 4>&- 5>&- 6>&- 7>&- 8>&- 9>&-
|
|
x=abc
|
|
cat << EOF
|
|
$x
|
|
EOF
|
|
!!!!
|
|
chmod 755 "$f"
|
|
if [[ $($SHELL "$f") != abc ]]
|
|
then err_exit 'here document descriptor was closed'
|
|
fi
|
|
cat > "$f" <<- '!!!!'
|
|
exec 0<&-
|
|
foobar()
|
|
{
|
|
"$bincat" <<- !
|
|
foobar
|
|
!
|
|
}
|
|
: << EOF
|
|
$PWD
|
|
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
EOF
|
|
print -r -- "$(foobar)"
|
|
!!!!
|
|
if [[ $(export bincat; "$SHELL" "$f") != foobar ]]
|
|
then err_exit 'here document with stdin closed failed'
|
|
fi
|
|
printf $'cat <<# \\!!!\n\thello\n\t\tworld\n!!!' > $f
|
|
[[ $($SHELL "$f") == $'hello\n\tworld' ]] || err_exit "<<# not working for quoted here documents"
|
|
printf $'w=world;cat <<# !!!\n\thello\n\t\t$w\n!!!' > $f
|
|
[[ $($SHELL "$f") == $'hello\n\tworld' ]] || err_exit "<<# not working for non-quoted here documents"
|
|
[[ $( $SHELL <<- \++++
|
|
S=( typeset a )
|
|
function S.a.get
|
|
{
|
|
.sh.value=$__a
|
|
}
|
|
__a=1234
|
|
cat <<-EOF
|
|
${S.a}
|
|
EOF
|
|
++++
|
|
) == 1234 ]] 2> /dev/null || err_exit 'here document with get discipline failed'
|
|
[[ $($SHELL -c 'g(){ print ok;}; cat <<- EOF
|
|
${ g;}
|
|
EOF
|
|
' 2> /dev/null) == ok ]] || err_exit '${ command;} not working in heredoc'
|
|
script=$f
|
|
{
|
|
for ((i=0; i < 406; i++))
|
|
do print ': 23456789012345678'
|
|
done
|
|
print : 123456789123
|
|
cat <<- \EOF
|
|
eval "$(
|
|
{ cat ; } <<MARKER
|
|
print hello
|
|
MARKER
|
|
)"
|
|
EOF
|
|
} > $script
|
|
chmod +x $script
|
|
[[ $($SHELL $script) == hello ]] 2> /dev/null || err_exit 'heredoc embedded in command substitution fails at buffer boundary'
|
|
|
|
got=$( cat << EOF
|
|
\
|
|
abc
|
|
EOF)
|
|
[[ $got == abc ]] || err_exit 'line continuation at start of buffer not working'
|
|
|
|
tmpfile1=$tmp/file1
|
|
tmpfile2=$tmp/file2
|
|
function gendata
|
|
{
|
|
typeset -RZ3 i
|
|
for ((i=0; i < 500; i++))
|
|
do print -r -- "=====================This is line $i============="
|
|
done
|
|
}
|
|
|
|
cat > $tmpfile1 <<- +++
|
|
function foobar
|
|
{
|
|
cat << XXX
|
|
$(gendata)
|
|
XXX
|
|
}
|
|
cat > $tmpfile2 <<- EOF
|
|
\$(foobar)
|
|
$(gendata)
|
|
EOF
|
|
+++
|
|
chmod +x $tmpfile1
|
|
$SHELL $tmpfile1
|
|
set -- $(wc < $tmpfile2)
|
|
(( $1 == 1000 )) || err_exit "heredoc $1 lines, should be 1000 lines"
|
|
(( $2 == 4000 )) || err_exit "heredoc $2 words, should be 4000 words"
|
|
|
|
# comment with here document loses line number count
|
|
integer line=$((LINENO+5))
|
|
function tst
|
|
{
|
|
[[ $1 == $2 ]] || echo expected $1, got $2
|
|
}
|
|
tst $line $LINENO <<"!" # this comment affects LINENO #
|
|
1
|
|
!
|
|
(( (line+=3) == LINENO )) || err_exit "line number=$LINENO should be $line"
|
|
|
|
[[ $($SHELL -c 'wc -c <<< ""' 2> /dev/null) == *1 ]] || err_exit '<<< with empty string not working'
|
|
|
|
mkdir $tmp/functions
|
|
cat > $tmp/functions/t2 <<\!!!
|
|
function t2
|
|
{
|
|
cat <<EOF | sed 's/1234567890/qwertyuiopasdfghj/'
|
|
${1}
|
|
EOF
|
|
}
|
|
!!!
|
|
|
|
FPATH=$tmp/functions
|
|
foo=${
|
|
cat <<EOF
|
|
1 34567890 $(t2 1234567890 ) 0123456789012345678901234567890123
|
|
111111111111111111111111111111111111111111111111111111111111111
|
|
111111111111111111111111111111111111111111111111111111111111111
|
|
111111111111111111111111111111111111111111111111111111111111111
|
|
111111111111111111111111111111111111111111111111111111111111111
|
|
111111111111111111111111111111111111111111111111111111111111111
|
|
111111111111111111111111111111111111111111111111111111111111111
|
|
111111111111111111111111111111111111111111111111111111111111111
|
|
111111111111111111111111111111111111111111111111111111111111111
|
|
111111111111111111111111111111111111111111111111111111111111111
|
|
111111111111111111111111111111111111111111111111111111111111111
|
|
111111111111111111111111111111111111111111111111111111111111111
|
|
111111111111111111111111111111111111111111111111111111111111111
|
|
111111111111111111111111111111111111111111111111111111111111111
|
|
111111111111111111111111111111111111111111111111111111111111111
|
|
111111111111111111111111111111111111111111111111111111111111 1
|
|
|
|
2 34567890 $(t2 1234567890 ) 0123456789012345678901234567890123
|
|
222222222222222222222222222222222222222222222222222222222222222
|
|
222222222222222222222222222222222222222222222222222222222222222
|
|
222222222222222222222222222222222222222222222222222222222222222
|
|
222222222222222222222222222222222222222222222222222222222222222
|
|
222222222222222222222222222222222222222222222222222222222222222
|
|
222222222222222222222222222222222222222222222222222222222222222
|
|
222222222222222222222222222222222222222222222222222222222222222
|
|
222222222222222222222222222222222222222222222222222222222222222
|
|
222222222222222222222222222222222222222222222222222222222222222
|
|
222222222222222222222222222222222222222222222222222222222222222
|
|
222222222222222222222222222222222222222222222222222222222222222
|
|
222222222222222222222222222222222222222222222222222222222222222
|
|
222222222222222222222222222222222222222222222222222222222222222
|
|
222222222222222222222222222222222222222222222222222222222222222
|
|
222222222222222222222222222222222222222222222222222222222222 2
|
|
|
|
3 34567890 $(t2 1234567890 ) 0123456789012345678901234567890123
|
|
333333333333333333333333333333333333333333333333333333333333333
|
|
333333333333333333333333333333333333333333333333333333333333333
|
|
333333333333333333333333333333333333333333333333333333333333333
|
|
333333333333333333333333333333333333333333333333333333333333333
|
|
333333333333333333333333333333333333333333333333333333333333333
|
|
333333333333333333333333333333333333333333333333333333333333333
|
|
333333333333333333333333333333333333333333333333333333333333333
|
|
333333333333333333333333333333333333333333333333333333333333333
|
|
333333333333333333333333333333333333333333333333333333333333333
|
|
333333333333333333333333333333333333333333333333333333333333333
|
|
333333333333333333333333333333333333333333333333333333333333333
|
|
333333333333333333333333333333333333333333333333333333333333333
|
|
333333333333333333333333333333333333333333333333333333333333333
|
|
333333333333333333333333333333333333333333333333333333333333333
|
|
333333333333333333333333333333333333333333333333333333333333 3
|
|
|
|
4 34567890 $(t2 1234567890 ) 0123456789012345678901234567890123
|
|
444444444444444444444444444444444444444444444444444444444444444
|
|
444444444444444444444444444444444444444444444444444444444444444
|
|
444444444444444444444444444444444444444444444444444444444444444
|
|
444444444444444444444444444444444444444444444444444444444444444
|
|
444444444444444444444444444444444444444444444444444444444444444
|
|
444444444444444444444444444444444444444444444444444444444444444
|
|
444444444444444444444444444444444444444444444444444444444444444
|
|
444444444444444444444444444444444444444444444444444444444444444
|
|
444444444444444444444444444444444444444444444444444444444444444
|
|
444444444444444444444444444444444444444444444444444444444444444
|
|
444444444444444444444444444444444444444444444444444444444444444
|
|
444444444444444444444444444444444444444444444444444444444444444
|
|
444444444444444444444444444444444444444444444444444444444444444
|
|
444444444444444444444444444444444444444444444444444444444444444
|
|
444444444444444444444444444444444444444444444444444444444444 4
|
|
|
|
5 34567890 $(t2 1234567890 ) 0123456789012345678901234567890123
|
|
555555555555555555555555555555555555555555555555555555555555555
|
|
555555555555555555555555555555555555555555555555555555555555555
|
|
555555555555555555555555555555555555555555555555555555555555555
|
|
555555555555555555555555555555555555555555555555555555555555555
|
|
555555555555555555555555555555555555555555555555555555555555555
|
|
555555555555555555555555555555555555555555555555555555555555555
|
|
555555555555555555555555555555555555555555555555555555555555555
|
|
555555555555555555555555555555555555555555555555555555555555555
|
|
555555555555555555555555555555555555555555555555555555555555555
|
|
555555555555555555555555555555555555555555555555555555555555555
|
|
555555555555555555555555555555555555555555555555555555555555555
|
|
555555555555555555555555555555555555555555555555555555555555555
|
|
555555555555555555555555555555555555555555555555555555555555555
|
|
555555555555555555555555555555555555555555555555555555555555555
|
|
555555555555555555555555555555555555555555555555555555555555 5
|
|
|
|
6 34567890 $(t2 1234567890 ) 0123456789012345678901234567890123
|
|
666666666666666666666666666666666666666666666666666666666666666
|
|
666666666666666666666666666666666666666666666666666666666666666
|
|
666666666666666666666666666666666666666666666666666666666666666
|
|
666666666666666666666666666666666666666666666666666666666666666
|
|
666666666666666666666666666666666666666666666666666666666666666
|
|
666666666666666666666666666666666666666666666666666666666666666
|
|
666666666666666666666666666666666666666666666666666666666666666
|
|
666666666666666666666666666666666666666666666666666666666666666
|
|
666666666666666666666666666666666666666666666666666666666666666
|
|
666666666666666666666666666666666666666666666666666666666666666
|
|
666666666666666666666666666666666666666666666666666666666666666
|
|
666666666666666666666666666666666666666666666666666666666666666
|
|
666666666666666666666666666666666666666666666666666666666666666
|
|
666666666666666666666666666666666666666666666666666666666666666
|
|
666666666666666666666666666666666666666666666666666666666666 6
|
|
|
|
7 34567890 $(t2 1234567890 ) 0123456789012345678901234567890123
|
|
777777777777777777777777777777777777777777777777777777777777777
|
|
777777777777777777777777777777777777777777777777777777777777777
|
|
777777777777777777777777777777777777777777777777777777777777777
|
|
777777777777777777777777777777777777777777777777777777777777777
|
|
777777777777777777777777777777777777777777777777777777777777777
|
|
777777777777777777777777777777777777777777777777777777777777777
|
|
777777777777777777777777777777777777777777777777777777777777777
|
|
777777777777777777777777777777777777777777777777777777777777777
|
|
777777777777777777777777777777777777777777777777777777777777777
|
|
777777777777777777777777777777777777777777777777777777777777777
|
|
777777777777777777777777777777777777777777777777777777777777777
|
|
777777777777777777777777777777777777777777777777777777777777777
|
|
777777777777777777777777777777777777777777777777777777777777777
|
|
777777777777777777777777777777777777777777777777777777777777777
|
|
777777777777777777777777777777777777777777777777777777777777 7
|
|
|
|
8 34567890 $(t2 1234567890 ) 0123456789012345678901234567890123
|
|
888888888888888888888888888888888888888888888888888888888888888
|
|
888888888888888888888888888888888888888888888888888888888888888
|
|
888888888888888888888888888888888888888888888888888888888888888
|
|
888888888888888888888888888888888888888888888888888888888888888
|
|
888888888888888888888888888888888888888888888888888888888888888
|
|
888888888888888888888888888888888888888888888888888888888888888
|
|
888888888888888888888888888888888888888888888888888888888888888
|
|
888888888888888888888888888888888888888888888888888888888888888
|
|
888888888888888888888888888888888888888888888888888888888888888
|
|
888888888888888888888888888888888888888888888888888888888888888
|
|
888888888888888888888888888888888888888888888888888888888888888
|
|
888888888888888888888888888888888888888888888888888888888888888
|
|
888888888888888888888888888888888888888888888888888888888888888
|
|
888888888888888888888888888888888888888888888888888888888888888
|
|
888888888888888888888888888888888888888888888888888888888888 8
|
|
|
|
9 34567890 $(t2 1234567890 ) 0123456789012345678901234567890123
|
|
999999999999999999999999999999999999999999999999999999999999999
|
|
999999999999999999999999999999999999999999999999999999999999999
|
|
999999999999999999999999999999999999999999999999999999999999999
|
|
999999999999999999999999999999999999999999999999999999999999999
|
|
999999999999999999999999999999999999999999999999999999999999999
|
|
999999999999999999999999999999999999999999999999999999999999999
|
|
999999999999999999999999999999999999999999999999999999999999999
|
|
999999999999999999999999999999999999999999999999999999999999999
|
|
999999999999999999999999999999999999999999999999999999999999999
|
|
999999999999999999999999999999999999999999999999999999999999999
|
|
999999999999999999999999999999999999999999999999999999999999999
|
|
999999999999999999999999999999999999999999999999999999999999999
|
|
999999999999999999999999999999999999999999999999999999999999999
|
|
999999999999999999999999999999999999999999999999999999999999999
|
|
999999999999999999999999999999999999999999999999999999999999 9
|
|
|
|
10 4567890 $(t2 1234567890 ) 0123456789012345678901234567890123
|
|
101010101010101010101010101010101010101010101010101010101010103
|
|
101010101010101010101010101010101010101010101010101010101010103
|
|
101010101010101010101010101010101010101010101010101010101010103
|
|
101010101010101010101010101010101010101010101010101010101010103
|
|
101010101010101010101010101010101010101010101010101010101010103
|
|
101010101010101010101010101010101010101010101010101010101010103
|
|
101010101010101010101010101010101010101010101010101010101010103
|
|
101010101010101010101010101010101010101010101010101010101010103
|
|
101010101010101010101010101010101010101010101010101010101010103
|
|
101010101010101010101010101010101010101010101010101010101010103
|
|
101010101010101010101010101010101010101010101010101010101010103
|
|
101010101010101010101010101010101010101010101010101010101010103
|
|
101010101010101010101010101010101010101010101010101010101010103
|
|
101010101010101010101010101010101010101010101010101010101010103
|
|
1010101010101010101010101010101010101010101010101010101010 END
|
|
|
|
EOF
|
|
}
|
|
[[ ${#foo} == 10238 ]] || err_exit 'large here docs containing command subs of dynamically loaded functions fails'
|
|
|
|
{
|
|
print $'FOO=1\nBAR=foobarbaz'
|
|
print -- 'cat <<#EOF'
|
|
integer i
|
|
for ((i=0; i < 50000; i++))
|
|
do print -r -- ' $(($FOO + 1))'
|
|
print -r -- ' $BAR meep'
|
|
done
|
|
print EOF
|
|
} > $f
|
|
$SHELL $f > $g
|
|
[[ $(grep meep $g | grep -v foobar) != '' ]] && err_exit 'here-doc losing $var expansions on boundaries in rare cases'
|
|
|
|
print foo > $tmp/foofile
|
|
x=$( $SHELL 2> /dev/null 'read <<< $(<'"$tmp"'/foofile) 2> /dev/null;print -r "$REPLY"')
|
|
[[ $x == foo ]] || err_exit '<<< $(<file) not working'
|
|
|
|
# ======
|
|
# A syntax error should not occur if a command substitution is run on the same line
|
|
# as a here document.
|
|
got=$("$SHELL" -c 'true << EOF || true "$(true)"
|
|
EOF' 2>&1) || err_exit 'placing a command substitution and here-doc on the same line causes a syntax error' \
|
|
"(got $(printf %q "$got"))"
|
|
|
|
# Another version of this regression from Red Hat bug 1036931
|
|
expect='gamma'
|
|
actual=$("$SHELL" -c 'cat <<EOF | tail -$((5-4))
|
|
alpha
|
|
beta
|
|
gamma
|
|
EOF' 2>&1)
|
|
[[ $actual == "$expect" ]] || err_exit 'Syntax error on arith expansion on same line as here-doc' \
|
|
"(expected $(printf %q "$expect"), got $(printf %q "$actual"))"
|
|
|
|
# A here-document in a command substitution should cause a syntax error if it isn't
|
|
# completed inside of the command substitution.
|
|
$SHELL -c '$(true << !)
|
|
!' 2> /dev/null && err_exit "a here-doc that isn't completed before the closing ) in a command substitution doesn't cause an error"
|
|
|
|
# ======
|
|
# Check that ${p}, where p is a special parameter, does not cause a syntax error in a here-document.
|
|
# Bug for ${!} and ${$} reported at: https://github.com/ksh93/ksh/issues/127
|
|
for p in @ \* \# ! \$ - \? 0; do
|
|
err=$(eval ': <<EOF
|
|
${'"$p"'}
|
|
EOF
|
|
' 2>&1) || err_exit "special parameter \${$p} throws syntax error in here-document (got \"$err\")"
|
|
done
|
|
|
|
# ======
|
|
exit $((Errors<125?Errors:125))
|