mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-03-09 15:50:02 +00:00
src/cmd/ksh93/tests/{shtests,_common}:
- When xtrace is active, set SECONDS to the float type so that
the $SECONDS expansion in $PS4 shows fractional seconds.
src/cmd/ksh93/tests/*.sh:
- Various fixes to avoid command substitutions incorporating xtrace
output into their results. Sometimes this is done by avoiding a
preceding assignment on a command that redirects 2>&1 (as that
will also redirect the preceding assignment and its xtrace,
causing the command substitution to capture the xtrace); other
times it was easiest to just turn off xtrace outright within the
command substitution.
src/cmd/ksh93/tests/math.sh:
- Remove an obsolete 'fixme' note.
709 lines
25 KiB
Bash
Executable file
709 lines
25 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}"
|
|
|
|
# ======
|
|
# as of 93u+, typeset -xu/-xl failed to change case in a value (rhbz#1188377)
|
|
# (this test failed to fail when it was added at the end, so it's at the start)
|
|
unset test_u test_xu test_txu
|
|
typeset -u test_u=uppercase
|
|
typeset -xu test_xu=uppercase
|
|
typeset -txu test_txu=uppercase
|
|
typeset -l test_l=LOWERCASE
|
|
typeset -xl test_xl=LOWERCASE
|
|
typeset -txl test_txl=LOWERCASE
|
|
exp="UPPERCASE UPPERCASE UPPERCASE lowercase lowercase lowercase"
|
|
got="${test_u} ${test_xu} ${test_txu} ${test_l} ${test_xl} ${test_txl}"
|
|
[[ $got == "$exp" ]] || err_exit "typeset failed to change case in variable" \
|
|
"(expected $(printf %q "$exp"), got $(printf %q "$got"))"
|
|
unset ${!test_*}
|
|
|
|
# ======
|
|
r=readonly u=Uppercase l=Lowercase i=22 i8=10 L=abc L5=def uL5=abcdef xi=20
|
|
x=export t=tagged H=hostname LZ5=026 RZ5=026 Z5=123 lR5=ABcdef R5=def n=l
|
|
for option in u l i i8 L L5 LZ5 RZ5 Z5 r x H t R5 uL5 lR5 xi n
|
|
do typeset -$option $option
|
|
done
|
|
(r=newval) 2> /dev/null && err_exit readonly attribute fails
|
|
i=i+5
|
|
if ((i != 27))
|
|
then err_exit integer attributes fails
|
|
fi
|
|
if [[ $i8 != 8#12 ]]
|
|
then err_exit integer base 8 fails
|
|
fi
|
|
if [[ $u != UPPERCASE ]]
|
|
then err_exit uppercase fails
|
|
fi
|
|
if [[ $l != lowercase ]]
|
|
then err_exit lowercase fails
|
|
fi
|
|
if [[ $n != lowercase ]]
|
|
then err_exit reference variables fail
|
|
fi
|
|
if [[ t=tagged != $(typeset -t) ]]
|
|
then err_exit tagged fails
|
|
fi
|
|
if [[ t != $(typeset +t) ]]
|
|
then err_exit tagged fails
|
|
fi
|
|
if [[ $Z5 != 00123 ]]
|
|
then err_exit zerofill fails
|
|
fi
|
|
if [[ $RZ5 != 00026 ]]
|
|
then err_exit right zerofill fails
|
|
fi
|
|
L=12345
|
|
if [[ $L != 123 ]]
|
|
then err_exit leftjust fails
|
|
fi
|
|
if [[ $L5 != "def " ]]
|
|
then err_exit leftjust fails
|
|
fi
|
|
if [[ $uL5 != ABCDE ]]
|
|
then err_exit leftjust uppercase fails
|
|
fi
|
|
if [[ $lR5 != bcdef ]]
|
|
then err_exit rightjust fails
|
|
fi
|
|
if [[ $R5 != " def" ]]
|
|
then err_exit rightjust fails
|
|
fi
|
|
if [[ $($SHELL -c 'echo $x') != export ]]
|
|
then err_exit export fails
|
|
fi
|
|
if [[ $($SHELL -c 'xi=xi+4;echo $xi') != 24 ]]
|
|
then err_exit export attributes fails
|
|
fi
|
|
if [[ -o ?posix && $(set -o posix; "$SHELL" -c 'xi=xi+4;echo $xi') != "xi+4" ]]
|
|
then err_exit "attributes exported despite posix mode (-o posix)"
|
|
fi
|
|
if [[ -o ?posix && $("$SHELL" -o posix -c 'xi=xi+4;echo $xi') != "xi+4" ]]
|
|
then err_exit "attributes imported despite posix mode (-o posix)"
|
|
fi
|
|
if [[ -o ?posix ]] &&
|
|
ln -s "$SHELL" "$tmp/sh" &&
|
|
[[ $("$tmp/sh" -c 'xi=xi+4;echo $xi') != "xi+4" ]]
|
|
then err_exit "attributes imported despite posix mode (invoked as sh)"
|
|
fi
|
|
x=$(foo=abc $SHELL <<!
|
|
foo=bar
|
|
$SHELL -c 'print \$foo'
|
|
!
|
|
)
|
|
if [[ $x != bar ]]
|
|
then err_exit 'environment variables require re-export'
|
|
fi
|
|
(typeset + ) > /dev/null 2>&1 || err_exit 'typeset + not working'
|
|
(typeset -L-5 buf="A" 2>/dev/null)
|
|
if [[ $? == 0 ]]
|
|
then err_exit 'typeset allows negative field for left/right adjust'
|
|
fi
|
|
a=b
|
|
readonly $a=foo
|
|
if [[ $b != foo ]]
|
|
then err_exit 'readonly $a=b not working'
|
|
fi
|
|
if [[ $(export | grep '^PATH=') != PATH=* ]]
|
|
then err_exit 'export not working'
|
|
fi
|
|
picture=(
|
|
bitmap=/fruit
|
|
size=(typeset -E x=2.5)
|
|
)
|
|
string="$(print $picture)"
|
|
if [[ "${string}" != *'size=( typeset -E'* ]]
|
|
then err_exit 'print of compound exponential variable not working'
|
|
fi
|
|
sz=(typeset -E y=2.2)
|
|
string="$(print $sz)"
|
|
if [[ "${sz}" == *'typeset -E -F'* ]]
|
|
then err_exit 'print of exponential shows both -E and -F attributes'
|
|
fi
|
|
print 'typeset -i m=48/4+1;print -- $m' > $tmp/script
|
|
chmod +x $tmp/script
|
|
typeset -Z2 m
|
|
if [[ $($tmp/script) != 13 ]]
|
|
then err_exit 'attributes not cleared for script execution'
|
|
fi
|
|
print 'print VAR=$VAR' > $tmp/script
|
|
typeset -L70 VAR=var
|
|
$tmp/script > $tmp/script.1
|
|
[[ $(< $tmp/script.1) == VAR= ]] || err_exit 'typeset -L should not be inherited'
|
|
typeset -Z LAST=00
|
|
unset -f foo
|
|
function foo
|
|
{
|
|
if [[ $1 ]]
|
|
then LAST=$1
|
|
else ((LAST++))
|
|
fi
|
|
}
|
|
foo 1
|
|
if (( ${#LAST} != 2 ))
|
|
then err_exit 'LAST!=2'
|
|
fi
|
|
foo
|
|
if (( ${#LAST} != 2 ))
|
|
then err_exit 'LAST!=2'
|
|
fi
|
|
[[ $(set | grep LAST) == LAST=02 ]] || err_exit "LAST not correct in set list"
|
|
set -a
|
|
unset foo
|
|
foo=bar
|
|
if [[ $(export | grep ^foo=) != 'foo=bar' ]]
|
|
then err_exit 'all export not working'
|
|
fi
|
|
unset foo
|
|
read foo <<!
|
|
bar
|
|
!
|
|
if [[ $(export | grep ^foo=) != 'foo=bar' ]]
|
|
then err_exit 'all export not working with read'
|
|
fi
|
|
if [[ $(typeset | grep PS2) == PS2 ]]
|
|
then err_exit 'typeset without arguments outputs names without attributes'
|
|
fi
|
|
unset a z q x
|
|
w1=hello
|
|
w2=world
|
|
t1="$w1 $w2"
|
|
if (( 'a' == 97 ))
|
|
then b1=aGVsbG8gd29ybGQ=
|
|
b2=aGVsbG8gd29ybGRoZWxsbyB3b3JsZA==
|
|
else b1=iIWTk5ZAppaZk4Q=
|
|
b2=iIWTk5ZAppaZk4SIhZOTlkCmlpmThA==
|
|
fi
|
|
z=$b1
|
|
typeset -b x=$b1
|
|
[[ $x == "$z" ]] || err_exit "binary variable not expanding correctly ($(printf %q "$x") != $(printf %q "$z"))"
|
|
[[ $(printf "%B" x) == $t1 ]] || err_exit 'typeset -b not working'
|
|
typeset -b -Z5 a=$b1
|
|
[[ $(printf "%B" a) == $w1 ]] || err_exit 'typeset -b -Z5 not working'
|
|
typeset -b q=$x$x
|
|
[[ $q == $b2 ]] || err_exit 'typeset -b not working with concatenation'
|
|
[[ $(printf "%B" q) == $t1$t1 ]] || err_exit 'typeset -b concatenation not working'
|
|
x+=$b1
|
|
[[ $x == $b2 ]] || err_exit 'typeset -b not working with append'
|
|
[[ $(printf "%B" x) == $t1$t1 ]] || err_exit 'typeset -b append not working'
|
|
typeset -b -Z20 z=$b1
|
|
(( $(printf "%B" z | wc -c) == 20 )) || err_exit 'typeset -b -Z20 not storing 20 bytes'
|
|
{
|
|
typeset -b v1 v2
|
|
read -N11 v1
|
|
read -N22 v2
|
|
} << !
|
|
hello worldhello worldhello world
|
|
!
|
|
[[ $v1 == "$b1" ]] || err_exit "v1=$v1 should be $b1"
|
|
[[ $v2 == "$x" ]] || err_exit "v1=$v2 should be $x"
|
|
if env '!=1' >/dev/null 2>&1
|
|
then [[ $(env '!=1' $SHELL -c 'echo ok' 2>/dev/null) == ok ]] || err_exit 'malformed environment terminates shell'
|
|
fi
|
|
unset var
|
|
typeset -b var
|
|
printf '12%Z34' | read -r -N 5 var
|
|
[[ $var == MTIAMzQ= ]] || err_exit 'binary files with zeros not working'
|
|
unset var
|
|
if command typeset -usi var=0xfffff 2> /dev/null
|
|
then (( $var == 0xffff )) || err_exit 'unsigned short integers not working'
|
|
else err_exit 'typeset -usi cannot be used for unsigned short'
|
|
fi
|
|
[[ $($SHELL -c 'unset foo;typeset -Z2 foo; print ${foo:-3}' 2> /dev/null) == 3 ]] || err_exit '${foo:-3} not 3 when typeset -Z2 field undefined'
|
|
[[ $($SHELL -c 'unset foo;typeset -Z2 foo; print ${foo:=3}' 2> /dev/null) == 03 ]] || err_exit '${foo:=-3} not 3 when typeset -Z2 foo undefined'
|
|
unset foo bar
|
|
unset -f fun
|
|
function fun
|
|
{
|
|
export foo=hello
|
|
typeset -x bar=world
|
|
[[ $foo == hello ]] || err_exit 'export scoping problem in function'
|
|
}
|
|
fun
|
|
[[ $'\n'$(export)$'\n' == *$'\nfoo=hello\n'* ]] || err_exit 'export not working in functions'
|
|
[[ $'\n'$(export) == *$'\nbar='* ]] && err_exit 'typeset -x not local'
|
|
[[ $($SHELL -c 'typeset -r IFS=;print -r $(pwd)' 2> /dev/null) == "$(pwd)" ]] || err_exit 'readonly IFS causes command substitution to fail'
|
|
fred[66]=88
|
|
[[ $(typeset -pa) == *fred* ]] || err_exit 'typeset -pa not working'
|
|
unset x y z
|
|
typeset -LZ3 x=abcd y z=00abcd
|
|
y=03
|
|
[[ $y == "3 " ]] || err_exit '-LZ3 not working for value 03'
|
|
[[ $x == "abc" ]] || err_exit '-LZ3 not working for value abcd'
|
|
[[ $x == "abc" ]] || err_exit '-LZ3 not working for value 00abcd'
|
|
unset x z
|
|
set +a
|
|
[[ $(typeset -p z) ]] && err_exit "typeset -p for z undefined failed"
|
|
unset z
|
|
x='typeset -i z=45'
|
|
eval "$x"
|
|
[[ $(typeset -p z) == "$x" ]] || err_exit "typeset -p for '$x' failed"
|
|
[[ $(typeset +p z) == "${x%=*}" ]] || err_exit "typeset +p for '$x' failed"
|
|
unset z
|
|
x='typeset -a z=(a b c)'
|
|
eval "$x"
|
|
[[ $(typeset -p z) == "$x" ]] || err_exit "typeset -p for '$x' failed"
|
|
[[ $(typeset +p z) == "${x%=*}" ]] || err_exit "typeset +p for '$x' failed"
|
|
unset z
|
|
x='typeset -C z=(
|
|
foo=bar
|
|
xxx=bam
|
|
)'
|
|
eval "$x"
|
|
x=${x//$'\t'}
|
|
x=${x//$'(\n'/'('}
|
|
x=${x//$'\n'/';'}
|
|
x=${x%';)'}')'
|
|
[[ $(typeset -p z) == "$x" ]] || err_exit "typeset -p for '$x' failed"
|
|
[[ $(typeset +p z) == "${x%%=*}" ]] || err_exit "typeset +p for '$x' failed"
|
|
unset z
|
|
x='typeset -A z=([bar]=bam [xyz]=bar)'
|
|
eval "$x"
|
|
[[ $(typeset -p z) == "$x" ]] || err_exit "typeset -p for '$x' failed"
|
|
[[ $(typeset +p z) == "${x%%=*}" ]] || err_exit "typeset +p for '$x' failed"
|
|
unset z
|
|
foo=abc
|
|
x='typeset -n z=foo'
|
|
eval "$x"
|
|
[[ $(typeset -p z) == "$x" ]] || err_exit "typeset -p for '$x' failed"
|
|
[[ $(typeset +p z) == "${x%%=*}" ]] || err_exit "typeset +p for '$x' failed"
|
|
typeset +n z
|
|
unset foo z
|
|
typeset -T Pt_t=(
|
|
float x=1 y=2
|
|
)
|
|
Pt_t z
|
|
x=${z//$'\t'}
|
|
x=${x//$'(\n'/'('}
|
|
x=${x//$'\n'/';'}
|
|
x=${x%';)'}')'
|
|
[[ $(typeset -p z) == "Pt_t z=$x" ]] || err_exit "typeset -p for type failed"
|
|
[[ $(typeset +p z) == "Pt_t z" ]] || err_exit "typeset +p for type failed"
|
|
unset z
|
|
function foo
|
|
{
|
|
typeset -p bar
|
|
}
|
|
bar=xxx
|
|
[[ $(foo) == bar=xxx ]] || err_exit 'typeset -p not working inside a function'
|
|
unset foo
|
|
typeset -L5 foo
|
|
[[ $(typeset -p foo) == 'typeset -L 5 foo' ]] || err_exit 'typeset -p not working for variables with attributes but without a value'
|
|
{ $SHELL <<- EOF
|
|
typeset -L3 foo=aaa
|
|
typeset -L6 foo=bbbbbb
|
|
[[ \$foo == bbbbbb ]]
|
|
EOF
|
|
} || err_exit 'typeset -L should not preserve old attributes'
|
|
{ $SHELL <<- EOF
|
|
typeset -R3 foo=aaa
|
|
typeset -R6 foo=bbbbbb
|
|
[[ \$foo == bbbbbb ]]
|
|
EOF
|
|
} 2> /dev/null || err_exit 'typeset -R should not preserve old attributes'
|
|
|
|
unset x
|
|
typeset -R 3 x
|
|
x=12345
|
|
x=9876
|
|
[[ $x == 876 ]] || err_exit "typeset -R not working with reassignment (expected 876, got $x)"
|
|
unset x
|
|
|
|
expected='YWJjZGVmZ2hpag=='
|
|
unset foo
|
|
typeset -b -Z10 foo
|
|
read foo <<< 'abcdefghijklmnop'
|
|
[[ $foo == "$expected" ]] || err_exit 'read foo, where foo is "typeset -b -Z10" not working'
|
|
unset foo
|
|
typeset -b -Z10 foo
|
|
read -N10 foo <<< 'abcdefghijklmnop'
|
|
[[ $foo == "$expected" ]] || err_exit 'read -N10 foo, where foo is "typeset -b -Z10" not working'
|
|
unset foo
|
|
typeset -b -A foo
|
|
read -N10 foo[4] <<< 'abcdefghijklmnop'
|
|
[[ ${foo[4]} == "$expected" ]] || err_exit 'read -N10 foo, where foo is "typeset -b -A" foo not working'
|
|
unset foo
|
|
typeset -b -a foo
|
|
read -N10 foo[4] <<< 'abcdefghijklmnop'
|
|
[[ ${foo[4]} == "$expected" ]] || err_exit 'read -N10 foo, where foo is "typeset -b -a" foo not working'
|
|
[[ $(printf %B foo[4]) == abcdefghij ]] || err_exit 'printf %B for binary associative array element not working'
|
|
[[ $(printf %B foo[4]) == abcdefghij ]] || err_exit 'printf %B for binary indexed array element not working'
|
|
unset foo
|
|
|
|
$SHELL 2> /dev/null -c 'export foo=(bar=3)' && err_exit 'compound variables cannot be exported'
|
|
|
|
$SHELL -c 'builtin date' >/dev/null 2>&1 &&
|
|
{
|
|
|
|
# check env var changes against a builtin that uses the env var
|
|
|
|
SEC=1234252800
|
|
ETZ=EST5EDT
|
|
EDT=03
|
|
PTZ=PST8PDT
|
|
PDT=00
|
|
|
|
CMD="date -f%H \\#$SEC"
|
|
|
|
export TZ=$ETZ
|
|
|
|
set -- \
|
|
"$EDT $PDT $EDT" "" "TZ=$PTZ" "" \
|
|
"$EDT $PDT $EDT" "" "TZ=$PTZ" "TZ=$ETZ" \
|
|
"$EDT $PDT $EDT" "TZ=$ETZ" "TZ=$PTZ" "TZ=$ETZ" \
|
|
"$PDT $EDT $PDT" "TZ=$PTZ" "" "TZ=$PTZ" \
|
|
"$PDT $EDT $PDT" "TZ=$PTZ" "TZ=$ETZ" "TZ=$PTZ" \
|
|
"$EDT $PDT $EDT" "foo=bar" "TZ=$PTZ" "TZ=$ETZ" \
|
|
|
|
while (( $# >= 4 ))
|
|
do exp=$1
|
|
got=$(print $($SHELL -c "builtin date; $2 $CMD; $3 $CMD; $4 $CMD"))
|
|
[[ $got == $exp ]] || err_exit "[ '$2' '$3' '$4' ] env sequence failed -- expected '$exp', got '$got'"
|
|
shift 4
|
|
done
|
|
|
|
}
|
|
|
|
unset v
|
|
typeset -H v=/dev/null
|
|
[[ $v == *nul* ]] || err_exit 'typeset -H for /dev/null not working'
|
|
|
|
unset x
|
|
(typeset +C x) 2> /dev/null && err_exit 'typeset +C should be an error'
|
|
(typeset +A x) 2> /dev/null && err_exit 'typeset +A should be an error'
|
|
(typeset +a x) 2> /dev/null && err_exit 'typeset +a should be an error'
|
|
|
|
unset x
|
|
{
|
|
x=$($SHELL -c 'integer -s x=5;print -r -- $x')
|
|
} 2> /dev/null
|
|
[[ $x == 5 ]] || err_exit 'integer -s not working'
|
|
|
|
[[ $(typeset -l) == *namespace*.sh* ]] && err_exit 'typeset -l should not contain namespace .sh'
|
|
|
|
unset got
|
|
typeset -u got
|
|
exp=100
|
|
((got=$exp))
|
|
[[ $got == $exp ]] || err_exit "typeset -l fails on numeric value -- expected '$exp', got '$got'"
|
|
unset got
|
|
|
|
unset s
|
|
typeset -a -u s=( hello world chicken )
|
|
[[ ${s[2]} == CHICKEN ]] || err_exit 'typeset -u not working with indexed arrays'
|
|
unset s
|
|
typeset -A -u s=( [1]=hello [0]=world [2]=chicken )
|
|
[[ ${s[2]} == CHICKEN ]] || err_exit 'typeset -u not working with associative arrays'
|
|
expected=$'(\n\t[0]=WORLD\n\t[1]=HELLO\n\t[2]=CHICKEN\n)'
|
|
[[ $(print -v s) == "$expected" ]] || err_exit 'typeset -u for associative array does not display correctly'
|
|
|
|
unset s
|
|
if command typeset -M totitle s 2> /dev/null
|
|
then [[ $(typeset +p s) == 'typeset -M totitle s' ]] || err_exit 'typeset -M totitle does not display correctly with typeset -p'
|
|
fi
|
|
|
|
{ $SHELL <<- \EOF
|
|
compound -a a1
|
|
for ((i=1 ; i < 100 ; i++ ))
|
|
do [[ "$( typeset + a1[$i] )" == '' ]] && a1[$i].text='hello'
|
|
done
|
|
[[ ${a1[70].text} == hello ]]
|
|
EOF
|
|
} 2> /dev/null
|
|
(( $? )) && err_exit 'typeset + a[i] not working'
|
|
|
|
typeset groupDB="" userDB=""
|
|
typeset -l -L1 DBPick=""
|
|
[[ -n "$groupDB" ]] && err_exit 'typeset -l -L1 causes unwanted side effect'
|
|
|
|
[[ -v HISTFILE ]] && saveHISTFILE=$HISTFILE || unset saveHISTFILE
|
|
HISTFILE=foo
|
|
typeset -u PS1='hello --- '
|
|
HISTFILE=foo
|
|
[[ $HISTFILE == foo ]] || err_exit 'typeset -u PS1 affects HISTFILE'
|
|
[[ -v saveHISTFILE ]] && HISTFILE=$saveHISTFILE || unset HISTFILE
|
|
|
|
typeset -a a=( aA= ZQ= bA= bA= bw= Cg= )
|
|
typeset -b x
|
|
for (( i=0 ; i < ${#a[@]} ; i++ ))
|
|
do x+="${a[i]}"
|
|
done
|
|
[[ $(printf "%B" x) == hello ]] || err_exit "append for typeset -b not working: got '$(printf "%B" x)' should get hello"
|
|
|
|
(
|
|
trap 'exit $?' EXIT
|
|
$SHELL -c 'typeset v=foo; [[ $(typeset -p v[0]) == v=foo ]]'
|
|
) 2> /dev/null || err_exit 'typeset -p v[0] not working for simple variable v'
|
|
|
|
unset x
|
|
expected='typeset -a x=(a\=3 b\=4)'
|
|
typeset -a x=( a=3 b=4)
|
|
[[ $(typeset -p x) == "$expected" ]] || err_exit 'assignment elements in typeset -a assignment not working'
|
|
|
|
unset z
|
|
z='typeset -a q=(a b c)'
|
|
$SHELL -c "$z; [[ \$(typeset -pa) == '$z' ]]" || err_exit 'typeset -pa does not list only indexed arrays'
|
|
z='typeset -C z=(foo=bar)'
|
|
$SHELL -c "$z; [[ \$(typeset -pC) == '$z' ]]" || err_exit 'typeset -pC does not list only compound variables'
|
|
unset y
|
|
z='typeset -A y=([a]=foo)'
|
|
$SHELL -c "$z; [[ \$(typeset -pA) == '$z' ]]" || err_exit 'typeset -pA does not list only associative arrays'
|
|
|
|
$SHELL 2> /dev/null -c 'typeset -C arr=( aa bb cc dd )' && err_exit 'invalid compound variable assignment not reported'
|
|
|
|
unset x
|
|
typeset -l x=
|
|
[[ ${x:=foo} == foo ]] || err_exit '${x:=foo} with x unset, not foo when x is a lowercase variable'
|
|
|
|
unset x
|
|
typeset -L4 x=$'\001abcdef'
|
|
[[ ${#x} == 5 ]] || err_exit "width of character '\001' is not zero"
|
|
|
|
unset x
|
|
typeset -L x=-1
|
|
command typeset -F x=0-1 2> /dev/null || err_exit 'typeset -F after typeset -L fails'
|
|
|
|
unset val
|
|
typeset -i val=10#0-3
|
|
typeset -Z val=0-1
|
|
[[ $val == 0-1 ]] || err_exit 'integer attribute not cleared for subsequent typeset'
|
|
|
|
unset x
|
|
typeset -L -Z x=foo
|
|
[[ $(typeset -p x) == 'typeset -Z 3 -L 3 x=foo' ]] || err_exit '-LRZ without [n] not defaulting to width of variable'
|
|
|
|
unset foo
|
|
typeset -Z2 foo=3
|
|
[[ $(typeset -p foo) == 'typeset -Z 2 -R 2 foo=03' ]] || err_exit '-Z2 not working'
|
|
export foo
|
|
[[ $(typeset -p foo) == 'typeset -x -Z 2 -R 2 foo=03' ]] || err_exit '-Z2 not working after export'
|
|
|
|
# ======
|
|
# unset exported readonly variables, combined with all other possible attributes
|
|
typeset -A expect=(
|
|
[a]='typeset -x -r -a foo'
|
|
[b]='typeset -x -r -b foo'
|
|
[i]='typeset -x -r -i foo'
|
|
[i37]='typeset -x -r -i 37 foo'
|
|
[ils]='typeset -x -r -s -i foo'
|
|
[isl]='typeset -x -r -l -i foo'
|
|
[l]='typeset -x -r -l foo'
|
|
[lF]='typeset -x -r -l -F foo'
|
|
[lE]='typeset -x -r -l -E foo'
|
|
[n]='typeset -n -r foo'
|
|
[s]='typeset -x -r foo'
|
|
[si]='typeset -x -r -s -i foo'
|
|
[u]='typeset -x -r -u foo'
|
|
[ui]='typeset -x -r -u -i foo'
|
|
[usi]='typeset -x -r -s -u -i foo'
|
|
[uli]='typeset -x -r -l -u -i foo'
|
|
[A]='typeset -x -r -A foo=()'
|
|
[C]='typeset -x -r foo=()'
|
|
[E]='typeset -x -r -E foo'
|
|
[E12]='typeset -x -r -E 12 foo'
|
|
[F]='typeset -x -r -F foo'
|
|
[F12]='typeset -x -r -F 12 foo'
|
|
[H]='typeset -x -r -H foo'
|
|
[L]='typeset -x -r -L 0 foo'
|
|
[L17]='typeset -x -r -L 17 foo'
|
|
[Mtolower]='typeset -x -r -l foo'
|
|
[Mtoupper]='typeset -x -r -u foo'
|
|
[R]='typeset -x -r -R 0 foo'
|
|
[R17]='typeset -x -r -R 17 foo'
|
|
[X17]='typeset -x -r -X 17 foo'
|
|
[lX17]='typeset -x -r -l -X 17 foo'
|
|
[S]='typeset -x -r foo'
|
|
[T]='typeset -x -r foo'
|
|
[Z]='typeset -x -r -Z 0 -R 0 foo'
|
|
[Z13]='typeset -x -r -Z 13 -R 13 foo'
|
|
)
|
|
for flag in "${!expect[@]}"
|
|
do unset foo
|
|
actual=$(
|
|
set +x
|
|
redirect 2>&1
|
|
export foo
|
|
(typeset "-$flag" foo; readonly foo; typeset -p foo)
|
|
typeset +x foo # unexport
|
|
leak=${ typeset -p foo; }
|
|
[[ -n $leak ]] && print "SUBSHELL LEAK: $leak"
|
|
)
|
|
if [[ $actual != "${expect[$flag]}" ]]
|
|
then err_exit "unset exported readonly with -$flag:" \
|
|
"expected $(printf %q "${expect[$flag]}"), got $(printf %q "$actual")"
|
|
fi
|
|
done
|
|
unset expect
|
|
|
|
unset base
|
|
for base in 0 1 65
|
|
do unset x
|
|
typeset -i $base x
|
|
[[ $(typeset -p x) == 'typeset -i x' ]] || err_exit "typeset -i base limits failed to default to 10 with base: $base."
|
|
done
|
|
unset x base
|
|
|
|
# ======
|
|
# reproducer from https://github.com/att/ast/issues/7
|
|
# https://github.com/oracle/solaris-userland/blob/master/components/ksh93/patches/250-22561374.patch
|
|
tmpfile=$tmp/250-22561374.log
|
|
function proxy
|
|
{
|
|
export myvar="bla"
|
|
child
|
|
unset myvar
|
|
}
|
|
function child
|
|
{
|
|
echo "myvar=$myvar" >> $tmpfile
|
|
}
|
|
function dotest
|
|
{
|
|
$(child)
|
|
$(proxy)
|
|
$(child)
|
|
}
|
|
dotest
|
|
exp=$'myvar=\nmyvar=bla\nmyvar='
|
|
got=$(< $tmpfile)
|
|
[[ $got == "$exp" ]] || err_exit 'variable exported in function in a subshell is also visible in a different subshell' \
|
|
"(expected $(printf %q "$exp"), got $(printf %q "$got"))"
|
|
|
|
# ======
|
|
# Combining -u with -F or -E caused an incorrect variable type
|
|
# https://github.com/ksh93/ksh/pull/163
|
|
# Allow the last numeric type to win out
|
|
typeset -A expect=(
|
|
[uF]='typeset -F a=2.0000000000'
|
|
[Fu]='typeset -F a=2.0000000000'
|
|
[ulF]='typeset -l -F a=2.0000000000'
|
|
[Ful]='typeset -l -F a=2.0000000000'
|
|
[Eu]='typeset -E a=2'
|
|
[Eul]='typeset -l -E a=2'
|
|
[EF]='typeset -F a=2.0000000000'
|
|
[XF]='typeset -F a=2.0000000000'
|
|
[FE]='typeset -E a=2'
|
|
[XE]='typeset -E a=2'
|
|
[FX12]='typeset -X 12 a=0x1.000000000000p+1'
|
|
[EX12]='typeset -X 12 a=0x1.000000000000p+1'
|
|
[Fi]='typeset -i a=2'
|
|
[Ei]='typeset -i a=2'
|
|
[Xi]='typeset -i a=2'
|
|
[iF]='typeset -F a=2.0000000000'
|
|
[iFs]='typeset -F a=2.0000000000'
|
|
[iE]='typeset -E a=2'
|
|
[iEs]='typeset -E a=2'
|
|
[iX12]='typeset -X 12 a=0x1.000000000000p+1'
|
|
)
|
|
for flag in "${!expect[@]}"
|
|
do unset a
|
|
actual=$(
|
|
set +x
|
|
redirect 2>&1
|
|
(typeset "-$flag" a=2; typeset -p a)
|
|
leak=${ typeset -p a; }
|
|
[[ -n $leak ]] && print "SUBSHELL LEAK: $leak"
|
|
)
|
|
if [[ $actual != "${expect[$flag]}" ]]
|
|
then err_exit "typeset -$flag a=2:" \
|
|
"expected $(printf %q "${expect[$flag]}"), got $(printf %q "$actual")"
|
|
fi
|
|
done
|
|
unset expect
|
|
|
|
[[ $(typeset -iX12 -s a=2; typeset -p a) == 'typeset -X 12 a=0x1.000000000000p+1' ]] || err_exit "typeset -iX12 -s failed to become typeset -X 12 a=0x1.000000000000p+1."
|
|
|
|
# ======
|
|
# Bug introduced in 0e4c4d61: could not alter the size of an existing justified string attribute
|
|
# https://github.com/ksh93/ksh/issues/142#issuecomment-780931533
|
|
got=$(unset s; typeset -L 100 s=h; typeset +p s; typeset -L 5 s; typeset +p s)
|
|
exp=$'typeset -L 100 s\ntypeset -L 5 s'
|
|
[[ $got == "$exp" ]] || err_exit 'cannot alter size of existing justified string attribute' \
|
|
"(expected $(printf %q "$exp"), got $(printf %q "$got"))"
|
|
got=$(unset s; typeset -L 100 s=h; typeset +p s; typeset -R 5 s; typeset +p s)
|
|
exp=$'typeset -L 100 s\ntypeset -R 5 s'
|
|
[[ $got == "$exp" ]] || err_exit 'cannot set -R after setting -L' \
|
|
"(expected $(printf %q "$exp"), got $(printf %q "$got"))"
|
|
got=$(unset s; typeset -L 100 s=h; typeset +p s; typeset -Z 5 s; typeset +p s)
|
|
exp=$'typeset -L 100 s\ntypeset -Z 5 -R 5 s'
|
|
[[ $got == "$exp" ]] || err_exit 'cannot set -Z after setting -L' \
|
|
"(expected $(printf %q "$exp"), got $(printf %q "$got"))"
|
|
|
|
# Old bug: zero-filling zero would cause the zero number to disappear
|
|
# https://github.com/ksh93/ksh/issues/142#issuecomment-782013674
|
|
got=$(typeset -i x=0; typeset -Z5 x; echo $x; typeset -Z3 x; echo $x; typeset -Z7 x; echo $x)
|
|
exp=$'00000\n000\n0000000'
|
|
[[ $got == "$exp" ]] || err_exit 'failed to zero-fill zero' \
|
|
"(expected $(printf %q "$exp"), got $(printf %q "$got"))"
|
|
|
|
# ======
|
|
# Applying the readonly attribute to an existing variable having a non-numeric attribute with a
|
|
# size such as -L, -R, or -Z would be set to 0 when it should have maintained the old size unless
|
|
# -L/R/Z existed as part of the new attributes being applied then its supplied size or default
|
|
# size of 0 should be used.
|
|
[[ $(typeset -L4 x; readonly x; typeset -p x) == 'typeset -r -L 4 x' ]] || err_exit "readonly apply failed to carry oldsize for typeset -r -L 4 x."
|
|
[[ $(typeset -L4 x; typeset -r x; typeset -p x) == 'typeset -r -L 4 x' ]] || err_exit "typeset -r apply failed to carry oldsize for typeset -r -L 4 x."
|
|
|
|
[[ $(typeset -R4 x; readonly x; typeset -p x) == 'typeset -r -R 4 x' ]] || err_exit "readonly apply failed to carry oldsize for typeset -r -R 4 x."
|
|
[[ $(typeset -R4 x; typeset -r x; typeset -p x) == 'typeset -r -R 4 x' ]] || err_exit "typeset -r apply failed to carry oldsize for typeset -r -R 4 x."
|
|
|
|
[[ $(typeset -Z4 x; readonly x; typeset -p x) == 'typeset -r -Z 4 -R 4 x' ]] || err_exit "readonly apply failed to carry oldsize for typeset -r -Z 4 -R 4."
|
|
[[ $(typeset -Z4 x; typeset -r x; typeset -p x) == 'typeset -r -Z 4 -R 4 x' ]] || err_exit "typeset -r apply failed to carry oldsize for typeset -r -Z 4 -R 4."
|
|
|
|
[[ $(typeset -bZ4 x; readonly x; typeset -p x) == 'typeset -r -b -Z 4 -R 4 x' ]] || err_exit "readonly apply failed to carry oldsize for typeset -r -b -Z 4 -R 4."
|
|
[[ $(typeset -bZ4 x; typeset -r x; typeset -p x) == 'typeset -r -b -Z 4 -R 4 x' ]] || err_exit "typeset -r apply failed to carry oldsize for typeset -r -b -Z 4 -R 4."
|
|
|
|
[[ $(typeset -L4 x; typeset -rL x; typeset -p x) == 'typeset -r -L 0 x' ]] || err_exit "typeset -rL failed to set new size."
|
|
[[ $(typeset -R4 x; typeset -rR x; typeset -p x) == 'typeset -r -R 0 x' ]] || err_exit "typeset -rR failed to set new size."
|
|
[[ $(typeset -Z4 x; typeset -rZ x; typeset -p x) == 'typeset -r -Z 0 -R 0 x' ]] || err_exit "typeset -rZ failed to set new size."
|
|
[[ $(typeset -bZ4 x; typeset -rbZ x; typeset -p x) == 'typeset -r -b -Z 0 -R 0 x' ]] || err_exit "typeset -rbZ failed to set new size."
|
|
|
|
# ======
|
|
# set/unset tests for numeric types
|
|
for flag in i s si ui us usi uli E F X lX
|
|
do
|
|
unset var
|
|
typeset "-$flag" var
|
|
[[ -v var ]] && err_exit "[[ -v var ]] should return false after typeset -$flag var"
|
|
[[ -z ${var+s} ]] || err_exit "\${var+s} should be empty after typeset -$flag var (got '${var+s}')"
|
|
[[ -z ${var:+n} ]] || err_exit "\${var:+n} should be empty after typeset -$flag var (got '${var+n}')"
|
|
[[ ${var-u} == 'u' ]] || err_exit "\${var-u} should be 'u' after typeset -$flag var (got '${var-u}')"
|
|
[[ ${var:-e} == 'e' ]] || err_exit "\${var:-e} should be 'e' after typeset -$flag var (got '${var:-e}')"
|
|
(( ${var=1} == 1 )) || err_exit "\${var=1} should yield 1 after typeset -$flag var (got '$var')"
|
|
unset var
|
|
typeset "-$flag" var
|
|
(( ${var:=1} == 1 )) || err_exit "\${var:=1} should yield 1 after typeset -$flag var (got '$var')"
|
|
unset var
|
|
typeset "-$flag" var=0
|
|
[[ -v var ]] || err_exit "[[ -v var ]] should return true after typeset -$flag var=0"
|
|
[[ ${var+s} == 's' ]] || err_exit "\${var+s} should be 's' after typeset -$flag var=0"
|
|
[[ ${var:+n} == 'n' ]] || err_exit "\${var:+n} should be 'n' after typeset -$flag var=0"
|
|
[[ ${var-u} != 'u' ]] || err_exit "\${var-u} should be 0 after typeset -$flag var (got '${var-u}')"
|
|
[[ ${var:-e} != 'e' ]] || err_exit "\${var:-e} should be 0 after typeset -$flag var (got '${var:-e}')"
|
|
(( ${var=1} == 0 )) || err_exit "\${var=1} should yield 0 after typeset -$flag var=0 (got '$var')"
|
|
unset var
|
|
typeset "-$flag" var=0
|
|
(( ${var:=1} == 0 )) || err_exit "\${var:=1} should yield 0 after typeset -$flag var=0 (got '$var')"
|
|
done
|
|
|
|
# ======
|
|
exit $((Errors<125?Errors:125))
|