Lines Matching refs:testout

134 typeset testout
164 testout=${ printf "%B\n" testbody | sed 's/<CS>/$(/g;s/<CE>/)/g' | ${SHELL} 2>&1 || err_exit "comma…
165testout}" == "command substitution calling myfunc successfully returned 0" ]] || err_exit "Expecte…
168 testout=${ printf "%B\n" testbody | sed 's/<CS>/${ /g;s/<CE>/ ; }/g' | ${SHELL} 2>&1 || err_exit "c…
169testout}" == "command substitution calling myfunc successfully returned 0" ]] || err_exit "Expecte…
172 testout=${ printf "%B\n" testbody | sed 's/<CS>/$( ulimit -c 0 ; /g;s/<CE>/)/g' | ${SHELL} 2>&1 || …
173testout}" == "command substitution calling myfunc successfully returned 0" ]] || err_exit "Expecte…
176 testout=${ printf "%B\n" testbody | sed 's/<CS>/$( ( /g;s/<CE>/) )/g' | ${SHELL} 2>&1 || err_exit "…
177testout}" == "command substitution calling myfunc successfully returned 0" ]] || err_exit "Expecte…
180 testout=${ printf "%B\n" testbody | sed 's/<CS>/${ ( /g;s/<CE>/) ; }/g' | ${SHELL} 2>&1 || err_exit…
181testout}" == "command substitution calling myfunc successfully returned 0" ]] || err_exit "Expecte…
193 typeset testout
208 testout=${ printf "%B\n" testbody | sed 's/<CS>/$(/g;s/<CE>/)/g' | ${SHELL} 2>&1 || err_exit "comma…
209 [[ "${testout}" == "xok" ]] || err_exit "Expected 'xok', got ${testout}"
212 testout=${ printf "%B\n" testbody | sed 's/<CS>/${ /g;s/<CE>/ ; }/g' | ${SHELL} 2>&1 || err_exit "c…
213 [[ "${testout}" == "xok" ]] || err_exit "Expected 'xok', got ${testout}"
216 testout=${ printf "%B\n" testbody | sed 's/<CS>/$( ulimit -c 0 ; /g;s/<CE>/)/g' | ${SHELL} 2>&1 || …
217 [[ "${testout}" == "xok" ]] || err_exit "Expected 'xok', got ${testout}"
220 testout=${ printf "%B\n" testbody | sed 's/<CS>/$( ( /g;s/<CE>/) )/g' | ${SHELL} 2>&1 || err_exit "…
221 [[ "${testout}" == "xok" ]] || err_exit "Expected 'xok', got ${testout}"
224 testout=${ printf "%B\n" testbody | sed 's/<CS>/${ ( /g;s/<CE>/) ; }/g' | ${SHELL} 2>&1 || err_exit…
225 [[ "${testout}" == "xok" ]] || err_exit "Expected 'xok', got ${testout}"
234 testout=$( ${SHELL} -c 'pipedcmd=${ printf "hi" | /bin/cat ; } ; print $pipedcmd' )
235 [[ "${testout}" == "hi" ]] || err_exit "test004: Expected 'hi', got '${testout}'"
283 testout="$( < "${tmpfile}.out")"
285 …[[ "${testout}" == "done" ]] || err_exit "test '${currtst.name}' failed, expected 'done', got '${t…