Enabled test cases for unicode characters in printf builtin

This commit is contained in:
Siteshwar Vashisht 2013-03-29 12:26:15 +05:30
parent 46e92e998e
commit 3ac9621f87
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ printf "%s\b%s\n" x y
printf "abc\rdef\n" printf "abc\rdef\n"
printf "Msg1\fMsg2\n" printf "Msg1\fMsg2\n"
printf "foo\vbar\vbaz\n" printf "foo\vbar\vbaz\n"
printf "\111 \x50" # \u0051 \U00000052 printf "\111 \x50 \u0051 \U00000052"
echo echo
echo "Test escapes" echo "Test escapes"

View File

@ -10,6 +10,6 @@ a hello
abc def abc def
Msg1 Msg2 Msg1 Msg2
foo bar baz foo bar baz
I P I P Q R
Test escapes Test escapes
a a