1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-03-02 02:54:28 +02:00

(zero-len): Add a test for the above.

This commit is contained in:
Jim Meyering
2004-03-25 17:33:56 +00:00
parent f11cd8f5c4
commit 98529c8bfc

View File

@@ -66,6 +66,14 @@ my @Tests =
# two file names, with final NUL
['2a', '--files0-from=-', '<',
{IN=>{f=>"g\0g\0"}}, {AUX=>{g=>"x".64*1024}}, {OUT=>"4\tg\n4\tg\n"} ],
# Ensure that du processes FILEs following a zero-length name.
['zero-len', '--files0-from=-', '<',
{IN=>{f=>"\0g\0"}}, {AUX=>{g=>"x".64*1024}},
{OUT=>"4\tg\n"},
{ERR => "du: -:1: invalid zero-length file name\n"},
{EXIT=>1}
],
);
my $save_temps = $ENV{DEBUG};