mirror of
https://github.com/coreutils/coreutils.git
synced 2024-12-15 04:48:16 +08:00
.
This commit is contained in:
parent
7f5ed2b586
commit
2d354c5a2e
@ -26,19 +26,13 @@ my $script_name = $ENV{SCRIPT_NAME};
|
||||
|
||||
my @Tests =
|
||||
(
|
||||
['1', (qw (bs=1 skip=1 seek=2 conv=notrunc count=3), "of=$out", '<'),
|
||||
{PRE => sub {my $ignore=`echo zyxwvutsrqponmlkji > $out`}},
|
||||
{IN=> '0123456789abcdef'},
|
||||
{OUT=> ''},
|
||||
{ERR=> "3+0 records in\n3+0 records out\n"},
|
||||
{POST=> sub { my $expected = "exp-$$";
|
||||
my $t=`echo zy123utsrqponmlkji > $expected`;
|
||||
compare_files ($script_name, undef, undef, $out, $expected)
|
||||
and die "the file `$out' does not have the expected"
|
||||
. " contents\n (should be same as `$expected')\n";
|
||||
unlink $out;
|
||||
unlink $expected;
|
||||
}},
|
||||
[
|
||||
'1', qw (bs=1 skip=1 seek=2 conv=notrunc count=3 of=@AUX@ < ),
|
||||
{IN=> '0123456789abcdef'},
|
||||
{AUX=> 'zyxwvutsrqponmlkji'},
|
||||
{OUT=> ''},
|
||||
{ERR=> "3+0 records in\n3+0 records out\n"},
|
||||
{CMP=> ['zy123utsrqponmlkji', {'@AUX@'=> undef}]},
|
||||
],
|
||||
);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user