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

tests: Adjust some tests to use improved UChild. test_tac: Ignore pipe tests on windows.

Summary:
* Disable test_retry6 on android because of intermittent failures
* Use wait() instead of wait_with_output in test_cat, test_cp, test_sort
* tests/sort: Simplify usage of test_sigpipe_panic
* Fix tests in test_tee.

tests/tac:
There was a change in the `tests/common/util.rs` test api concerning piped input which may have
revealed a bug in the implementation of tac. Please see also
https://github.com/uutils/coreutils/pull/4136
This commit is contained in:
Joining7943 2022-11-26 05:04:07 +01:00
parent 4f54eedb74
commit 4a2ced5940
7 changed files with 40 additions and 17 deletions

View file

@ -134,6 +134,7 @@ mod linux_only {
#[allow(deprecated)]
let output = proc
.ignore_stdin_write_error()
.run_no_wait()
.pipe_in_and_wait_with_output(content.as_bytes());