Home | History | Annotate | Download | only in sh

Lines Matching refs:abc

318 	if ! ${TEST_SH} -c ": \$'abc'" ||
319 test $( ${TEST_SH} -c "printf %s \$'abc'" ) != abc
325 atf_check -s exit:0 -e empty -o inline:'abc\tdef\n' ${TEST_SH} -c \
326 "printf '%s\\n' \$'abc\tdef'"
327 atf_check -s exit:0 -e empty -o inline:'abc\tdef\n' ${TEST_SH} -c \
328 "printf '%s\\n' \$'abc\011def'"
329 atf_check -s exit:0 -e empty -o inline:'abc\tdef\n' ${TEST_SH} -c \
330 "printf '%s\\n' \$'abc\x09'def"
331 atf_check -s exit:0 -e empty -o inline:'abc$def\n' ${TEST_SH} -c \
332 "def=xyz; printf '%s\\n' \$'abc\$def'"
379 "printf '%s' \$'abc\\
382 atf_check -s exit:0 -e empty -o inline:'abc\ndef' ${TEST_SH} -c \
383 "printf '%s' \$'abc
386 atf_check -s exit:0 -e empty -o inline:'abc\ndef' ${TEST_SH} -c \
388 'abc\\ndef'"
391 atf_check -s exit:0 -e empty -o inline:"abc\$'def'g" ${TEST_SH} -c \
392 "printf '%s' \"abc\$'def'g\""
393 atf_check -s exit:0 -e empty -o inline:'abc$defg' ${TEST_SH} -c \
394 "printf '%s' abc\\\$'def'g"
395 atf_check -s exit:0 -e empty -o inline:'abc$def' ${TEST_SH} -c \
396 "printf '%s' abc'\$'def"