From: Jim Meyering Date: Thu, 11 May 2000 08:28:51 +0000 (+0000) Subject: New tests. X-Git-Tag: FILEUTILS-4_0s~69 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=45dcf53e6e68dbfceb26aba325e774f915f68649;p=thirdparty%2Fcoreutils.git New tests. --- diff --git a/tests/unexpand/basic-1 b/tests/unexpand/basic-1 index 91d3394c17..b73b27e569 100755 --- a/tests/unexpand/basic-1 +++ b/tests/unexpand/basic-1 @@ -51,6 +51,10 @@ my @Tests = ['infloop-3', '-t', '2,3', {IN=> "x \t\t \n"}, {OUT=>"x\t\t\t \n"}], ['infloop-4', '-t', '1,2', {IN=> " \t\t \n"}, {OUT=>"\t\t\t \n"}], ['c-1', '-t', '1,2', {IN=> "x\t\t .\n"}, {OUT=>"x\t\t .\n"}], + + # This test failed in 2.0e and earlier. From Jie Xu. + ['tabs-1', qw( -t 4), {IN=> " a b c\n"}, {OUT=>"\ta b c\n"}], + ['tabs-2', qw(-a -t 4), {IN=> " a b c\n"}, {OUT=>"\ta\tb\tc\n"}], ); my $save_temps = $ENV{DEBUG};