about summary refs log tree commit diff
path: root/tests/ui/process
AgeCommit message (Collapse)AuthorLines
2023-07-29Fix tests.Mara Bos-1/+2
2023-07-29Change default panic handler message format.Mara Bos-1/+3
2023-07-26Regression test `println!()` panic message on `ErrorKind::BrokenPipe`Martin Nordholts-0/+47
No existing test failed if the [`panic!()`][1] of the `println!()` family of functions was removed, or if its message was changed. So add such a test. [1] https://github.com/rust-lang/rust/blob/104f4300cfddbd956e32820ef202a732f06ec848/library/std/src/io/stdio.rs#L1007-L1009
2023-05-27Allow newly uplifted invalid_from_utf8 lintUrgau-0/+2
2023-04-26Rollup merge of #109379 - flba-eb:108596_fixtest_sigpipe, r=jyn514jyn-3/+7
Replace `yes` command by `while-echo` in test `tests/ui/process/process-sigpipe.rs` The `yes` command is not available on all platforms. Fixes #108596. Inviting `@mvf` as he contributed to this patch. Thanks! This issue has been discussed in https://github.com/rust-lang/rust/pull/106673 but was moved to #108596 to get going. CC `@gh-tr` r? `@workingjubilee` `@rustbot` label +O-neutrino Notes about the comments https://github.com/rust-lang/rust/pull/106673#discussion_r1117324265: - The `echo` command is `/proc/boot/echo` (not built-in) - `/bin/sh` is a symlink to `/proc/boot/ksh` ```sh # ls -l /bin/sh /proc/boot/ksh /proc/boot/echo lrwxrwxrwx 1 root root 14 Mar 20 07:52 /bin/sh -> /proc/boot/ksh -r-xr-xr-x 1 root root 9390 Sep 12 2022 /proc/boot/echo -r-xr-xr-x 1 root root 308114 Sep 12 2022 /proc/boot/ksh ```
2023-03-28Raise an aborting signal without UBBen Kimock-2/+4
2023-03-20Replace `yes` command by `while-echo`Florian Bartels-3/+7
The `yes` command is not available on all platforms.
2023-02-28Add QNX Neutrino support to libstdFlorian Bartels-0/+1
Co-authored-by: gh-tr <troach@qnx.com>
2023-01-11Move /src/test to /testsAlbert Larsan-0/+1149