mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 19:47:45 +00:00
Merge pull request #4009 from andrewbaptist/fix_eof_linebytes
Match GNU semantics for missing EOF
This commit is contained in:
commit
969f821830
3 changed files with 45 additions and 5 deletions
|
@ -659,6 +659,22 @@ fn test_line_bytes_no_empty_file() {
|
|||
assert!(!at.plus("xak").exists());
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_line_bytes_no_eof() {
|
||||
let (at, mut ucmd) = at_and_ucmd!();
|
||||
ucmd.args(&["-C", "3"])
|
||||
.pipe_in("1\n2222\n3\n4")
|
||||
.succeeds()
|
||||
.no_stdout()
|
||||
.no_stderr();
|
||||
assert_eq!(at.read("xaa"), "1\n");
|
||||
assert_eq!(at.read("xab"), "222");
|
||||
assert_eq!(at.read("xac"), "2\n");
|
||||
assert_eq!(at.read("xad"), "3\n");
|
||||
assert_eq!(at.read("xae"), "4");
|
||||
assert!(!at.plus("xaf").exists());
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_guard_input() {
|
||||
let ts = TestScenario::new(util_name!());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue