printf: Test that the "--" option terminator works.

This commit is contained in:
jilles 2010-12-08 22:54:18 +00:00
parent 885e0c9379
commit b69863b7fd
2 changed files with 3 additions and 1 deletions

View File

@ -0,0 +1 @@
-d

View File

@ -2,7 +2,7 @@
REGRESSION_START($1)
echo '1..8'
echo '1..9'
REGRESSION_TEST(`b', `printf "abc%b%b" "def\n" "\cghi"')
REGRESSION_TEST(`d', `printf "%d,%5d,%.5d,%0*d,%.*d\n" 123 123 123 5 123 5 123')
@ -11,6 +11,7 @@ REGRESSION_TEST(`m1', `printf "%c%%%d\0\045\n" abc \"abc')
REGRESSION_TEST(`m2', `printf "abc\n\cdef"')
REGRESSION_TEST(`m3', `printf "%%%s\n" abc def ghi jkl')
REGRESSION_TEST(`m4', `printf "%d,%f,%c,%s\n"')
REGRESSION_TEST(`m5', `printf -- "-d\n"')
REGRESSION_TEST(`s', `printf "%.3s,%-5s\n" abcd abc')
REGRESSION_END()