1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-21 11:16:16 +02:00

Use test_vector, not array @t.

This commit is contained in:
Jim Meyering
1996-12-22 14:09:10 +00:00
parent dcd02c8008
commit 1b47ed2714
4 changed files with 36 additions and 18 deletions

View File

@@ -4,7 +4,7 @@ use strict;
$Test::input_via_stdin = 1;
@Test::t = (
my @tv = (
# test flags 1 or 2 strings input expected output expected return code
#
['1', q|'abcd' '[]*]'|, 'abcd', ']]]]', 0],
@@ -97,4 +97,9 @@ $Test::input_via_stdin = 1;
['R6', '-dc ' . q|'[:upper:]'|, '', '', 0],
);
sub test_vector
{
return @tv;
}
1;