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

tr: fix flaky test

This commit is contained in:
Terts Diepraam 2022-01-19 22:27:34 +01:00
parent ec386fa460
commit 9f649ffe9b

View file

@ -286,11 +286,6 @@ fn test_interpret_backslash_at_eol_literally() {
}
#[test]
// FixME: panicked at 'failed to write to stdin of child: Broken pipe (os error 32)
#[cfg(not(target_os = "freebsd"))]
fn test_more_than_2_sets() {
new_ucmd!()
.args(&["'abcdef'", "'a'", "'b'"])
.pipe_in("hello world")
.fails();
new_ucmd!().args(&["'abcdef'", "'a'", "'b'"]).fails();
}