Lines Matching refs:got
67 got=${ $SHELL -c 'print $PPID'; }
69 then err_exit "PPID variable failed -- expected '$exp', got '$got'"
490 got=$(<$tmp/out)
491 [[ $got == new ]] || err_exit "previously unset environment variable not passed to script, expected…
496 got=$(<$tmp/out)
497 [[ $got == new ]] || err_exit "environment variable covering local variable not passed to script, e…
502 got=$(<$tmp/out)
503 [[ $got == new ]] || err_exit "environment variable covering environment variable not passed to scr…
637 got=$($SHELL -c 'unset SHLVL; print -n aaa; ./zzz' 2>&1) >/dev/null 2>&1
638 [[ $got == "$exp" ]] || err_exit "unset SHLVL causes script failure -- expected '$exp', got '$got'"
646 got=$(CDPATH=:.. $SHELL -c "PATH=:/bin:/usr/bin; date > /dev/null; cd glean && ./$cmd" 2>&1)
647 …[[ $got == "$exp" ]] || err_exit "cd with CDPATH after PATH change failed -- expected '$exp', got …