######################################################################## # # # This software is part of the ast package # # Copyright (c) 1982-2007 AT&T Intellectual Property # # and is licensed under the # # Common Public License, Version 1.0 # # by AT&T Intellectual Property # # # # A copy of the License is available at # # http://www.opensource.org/licenses/cpl1.0.txt # # (with md5 checksum 059e8cd6165cb4c31e351f2b69388fd9) # # # # Information and Software Systems Research # # AT&T Research # # Florham Park NJ # # # # David Korn # # # ######################################################################## function err_exit { print -u2 -n "\t" print -u2 -r ${Command}[$1]: "${@:2}" let Errors+=1 } alias err_exit='err_exit $LINENO' Command=${0##*/} integer Errors=0 mkdir /tmp/ksh$$ cd /tmp/ksh$$ trap "PATH=$PATH; cd /; rm -rf /tmp/ksh$$" EXIT (PATH="/bin") [[ $($SHELL -c 'print -r -- "$PATH"') == "$PATH" ]] || err_exit 'export PATH lost in subshell' cat > bug1 <<- \EOF print print ok > /tmp/ok$$ /bin/chmod 755 /tmp/ok$$ trap 'cd /; rm -f /tmp/ok$$' EXIT function a { typeset -x PATH=/tmp ok$$ } path=$PATH unset PATH a PATH=$path } EOF [[ $($SHELL ./bug1 2> /dev/null) == ok ]] || err_exit "PATH in function not working" cat > bug1 <<- \EOF function lock_unlock { typeset PATH=/usr/bin typeset -x PATH='' } PATH=/usr/bin : $(PATH=/usr/bin getconf PATH) typeset -ft lock_unlock lock_unlock EOF ($SHELL ./bug1) 2> /dev/null || err_exit "path_delete bug" mkdir tdir$$ if $SHELL tdir$$ > /dev/null 2>&1 then err_exit 'not an error to run ksh on a directory' fi print 'print hi' > ls if [[ $($SHELL ls 2> /dev/null) != hi ]] then err_exit "$SHELL name not executing version in current directory" fi if [[ $(ls -d . 2>/dev/null) == . && $(PATH=/bin:/usr/bin:$PATH ls -d . 2>/dev/null) != . ]] then err_exit 'PATH export in command substitution not working' fi pwd=$PWD # get rid of leading and trailing : and trailing :. PATH=${PATH%.} PATH=${PATH%:} PATH=${PATH#.} PATH=${PATH#:} path=$PATH var=$(whence date) dir=$(basename "$var") for i in 1 2 3 4 5 6 7 8 9 0 do if ! whence notfound$i 2> /dev/null then cmd=notfound$i break fi done print 'print hello' > date chmod +x date print 'print notfound' > $cmd chmod +x "$cmd" > foo chmod 755 foo for PATH in $path :$path $path: .:$path $path: $path:. $PWD::$path $PWD:.:$path $path:$PWD $path:.:$PWD do # print path=$PATH $(whence date) # print path=$PATH $(whence "$cmd") date "$cmd" done > /dev/null 2>&1 builtin -d date 2> /dev/null if [[ $(PATH=:/usr/bin; date) != 'hello' ]] then err_exit "leading : in path not working" fi ( PATH=$PWD: builtin chmod print 'print cannot execute' > noexec chmod 644 noexec if [[ ! -x noexec ]] then noexec > /dev/null 2>&1 else exit 126 fi ) status=$? [[ $status == 126 ]] || err_exit "exit status of non-executable is $status -- 126 expected" builtin -d rm 2> /dev/null rm=$(whence rm) d=$(dirname "$rm") unset FPATH PATH=/dev/null if date > /dev/null 2>&1 then err_exit 'programs in . should not be found' fi [[ $(whence ./foo) != "$PWD/"./foo ]] && err_exit 'whence ./foo not working' [[ $(whence "$PWD/foo") != "$PWD/foo" ]] && err_exit 'whence $PWD/foo not working' [[ $(whence ./xxxxx) ]] && err_exit 'whence ./xxxx not working' PATH=$d: cp "$rm" kshrm$$ if [[ $(whence kshrm$$) != $PWD/kshrm$$ ]] then err_exit 'trailing : in pathname not working' fi cp "$rm" rm PATH=:$d if [[ $(whence rm) != $PWD/rm ]] then err_exit 'leading : in pathname not working' fi PATH=$d: whence rm > /dev/null if [[ $(whence rm) != $PWD/rm ]] then err_exit 'pathname not restored after scoping' fi mkdir bin print 'print ok' > bin/tst chmod +x bin/tst if [[ $(PATH=$PWD/bin tst 2>/dev/null) != ok ]] then err_exit '(PATH=$PWD/bin foo) does not find $PWD/bin/foo' fi cd / if whence ls > /dev/null then PATH= if [[ $(whence rm) ]] then err_exit 'setting PATH to Null not working' fi unset PATH if [[ $(whence rm) != /*rm ]] then err_exit 'unsetting path not working' fi fi PATH=/dev:/tmp/ksh$$ x=$(whence rm) typeset foo=$(PATH=/xyz:/abc :) y=$(whence rm) [[ $x != "$y" ]] && err_exit 'PATH not restored after command substitution' whence getconf > /dev/null && err_exit 'getconf should not be found' builtin /bin/getconf PATH=/bin PATH=$(getconf PATH) x=$(whence ls) PATH=.:$PWD:${x%/ls} [[ $(whence ls) == "$x" ]] || err_exit 'PATH search bug when .:$PWD in path' PATH=$PWD:.:${x%/ls} [[ $(whence ls) == "$x" ]] || err_exit 'PATH search bug when :$PWD:. in path' cd "${x%/ls}" [[ $(whence ls) == /* ]] || err_exit 'whence not generating absolute pathname' status=$($SHELL -c $'trap \'print $?\' EXIT;/a/b/c/d/e 2> /dev/null') [[ $status == 127 ]] || err_exit "not found command exit status $status -- expected 127" status=$($SHELL -c $'trap \'print $?\' EXIT;/dev/null 2> /dev/null') [[ $status == 126 ]] || err_exit "non executable command exit status $status -- expected 126" status=$($SHELL -c $'trap \'print $?\' ERR;/a/b/c/d/e 2> /dev/null') [[ $status == 127 ]] || err_exit "not found command with ERR trap exit status $status -- expected 127" status=$($SHELL -c $'trap \'print $?\' ERR;/dev/null 2> /dev/null') [[ $status == 126 ]] || err_exit "non executable command ERR trap exit status $status -- expected 126" exit $((Errors))