1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 19:47:45 +00:00

implement R and Q prefixes

This commit is contained in:
zhitkoff 2023-10-04 21:57:33 -04:00 committed by Yury Zhytkou
parent cb7479e823
commit 7038657a44

View file

@ -65,7 +65,7 @@ fn test_stdbuf_invalid_mode_fails() {
.args(&[*option, "1024R", "head"]) .args(&[*option, "1024R", "head"])
.fails() .fails()
.code_is(125) .code_is(125)
.stderr_only("stdbuf: invalid mode '1024R'\n"); .stderr_only("stdbuf: invalid mode '1024R': Value too large for defined data type\n");
#[cfg(not(target_pointer_width = "128"))] #[cfg(not(target_pointer_width = "128"))]
new_ucmd!() new_ucmd!()
.args(&[*option, "1Y", "head"]) .args(&[*option, "1Y", "head"])