mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-27 19:17:43 +00:00
l10n: port dd for translation + add french
This commit is contained in:
parent
411874f34b
commit
688215725c
6 changed files with 435 additions and 95 deletions
|
@ -1617,6 +1617,7 @@ fn test_reading_partial_blocks_from_fifo() {
|
|||
.args(["dd", "ibs=3", "obs=3", &format!("if={fifoname}")])
|
||||
.stdout(Stdio::piped())
|
||||
.stderr(Stdio::piped())
|
||||
.env("LANG", "C")
|
||||
.spawn()
|
||||
.unwrap();
|
||||
|
||||
|
@ -1661,6 +1662,7 @@ fn test_reading_partial_blocks_from_fifo_unbuffered() {
|
|||
.args(["dd", "bs=3", "ibs=1", "obs=1", &format!("if={fifoname}")])
|
||||
.stdout(Stdio::piped())
|
||||
.stderr(Stdio::piped())
|
||||
.env("LANG", "C")
|
||||
.spawn()
|
||||
.unwrap();
|
||||
|
||||
|
@ -1767,10 +1769,10 @@ fn test_wrong_number_err_msg() {
|
|||
new_ucmd!()
|
||||
.args(&["count=kBb"])
|
||||
.fails()
|
||||
.stderr_contains("dd: invalid number: ‘kBb’\n");
|
||||
.stderr_contains("dd: invalid number: 'kBb'\n");
|
||||
|
||||
new_ucmd!()
|
||||
.args(&["count=1kBb555"])
|
||||
.fails()
|
||||
.stderr_contains("dd: invalid number: ‘1kBb555’\n");
|
||||
.stderr_contains("dd: invalid number: '1kBb555'\n");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue