mirror of
https://github.com/uutils/coreutils
synced 2024-12-12 14:22:41 +00:00
test(quoting_style): Fix tests
This commit is contained in:
parent
e292e05f57
commit
2a1558f741
1 changed files with 4 additions and 4 deletions
|
@ -611,8 +611,8 @@ mod tests {
|
|||
("one\ntwo", "literal-show"),
|
||||
("one\\ntwo", "escape"),
|
||||
("\"one\\ntwo\"", "c"),
|
||||
("one?two", "shell"),
|
||||
("one\ntwo", "shell-show"),
|
||||
("'one?two'", "shell"),
|
||||
("'one\ntwo'", "shell-show"),
|
||||
("'one?two'", "shell-always"),
|
||||
("'one\ntwo'", "shell-always-show"),
|
||||
("'one'$'\\n''two'", "shell-escape"),
|
||||
|
@ -655,9 +655,9 @@ mod tests {
|
|||
"\"\\000\\001\\002\\003\\004\\005\\006\\a\\b\\t\\n\\v\\f\\r\\016\\017\"",
|
||||
"c",
|
||||
),
|
||||
("????????????????", "shell"),
|
||||
("'????????????????'", "shell"),
|
||||
(
|
||||
"\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0A\x0B\x0C\x0D\x0E\x0F",
|
||||
"'\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0A\x0B\x0C\x0D\x0E\x0F'",
|
||||
"shell-show",
|
||||
),
|
||||
("'????????????????'", "shell-always"),
|
||||
|
|
Loading…
Reference in a new issue