1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 03:27:44 +00:00

tail: Fix printed header for stdin should be the same on all platforms

This commit is contained in:
Joining7943 2023-04-20 21:12:24 +02:00
parent 08e8b40e45
commit ae60045f3f
2 changed files with 31 additions and 18 deletions

View file

@ -145,12 +145,8 @@ fn test_stdin_redirect_offset() {
}
#[test]
#[cfg(all(not(target_vendor = "apple"), not(target_os = "windows")))] // FIXME: for currently not working platforms
#[cfg(all(not(target_vendor = "apple")))] // FIXME: for currently not working platforms
fn test_stdin_redirect_offset2() {
// FIXME: windows: Failed because of difference in printed header. See below.
// actual : ==> - <==
// expected: ==> standard input <==
// like test_stdin_redirect_offset but with multiple files
let ts = TestScenario::new(util_name!());