coreutils/tests/common
Jeffrey Finkelstein eeef8290df head: display errors for each input file
Change the behavior of `head` to display an error for each problematic
file, instead of displaying an error message for the first problematic
file and terminating immediately at that point. This change now matches
the behavior of GNU `head`.

Before this commit, the first error caused the program to terminate
immediately:

    $ head a b c
    head: error: head: cannot open 'a' for reading: No such file or directory

After this commit:

    $ head a b c
    head: cannot open 'a' for reading: No such file or directory
    head: cannot open 'b' for reading: No such file or directory
    head: cannot open 'c' for reading: No such file or directory
2021-05-17 08:19:47 -04:00
..
macros.rs Added some tests utils for future refactoring 2021-04-11 02:27:16 +03:00
mod.rs tests: move macros into separate module 2016-05-22 15:10:06 -04:00
util.rs head: display errors for each input file 2021-05-17 08:19:47 -04:00