mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00:00
Enabled test cases for unicode characters in printf builtin
This commit is contained in:
parent
46e92e998e
commit
3ac9621f87
2 changed files with 2 additions and 2 deletions
|
@ -16,7 +16,7 @@ printf "%s\b%s\n" x y
|
|||
printf "abc\rdef\n"
|
||||
printf "Msg1\fMsg2\n"
|
||||
printf "foo\vbar\vbaz\n"
|
||||
printf "\111 \x50" # \u0051 \U00000052
|
||||
printf "\111 \x50 \u0051 \U00000052"
|
||||
|
||||
echo
|
||||
echo "Test escapes"
|
||||
|
|
|
@ -10,6 +10,6 @@ a hello
|
|||
abc
def
|
||||
Msg1Msg2
|
||||
foobarbaz
|
||||
I P
|
||||
I P Q R
|
||||
Test escapes
|
||||
a
|
||||
|
|
Loading…
Reference in a new issue