From 05c3d520a66d151e4de0f3606a8d62dac3076c0e Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Thu, 2 May 2019 20:32:50 -0400 Subject: [PATCH] Test: Ignore tabs on new .out --- test_regress/t/t_dist_tabs.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test_regress/t/t_dist_tabs.pl b/test_regress/t/t_dist_tabs.pl index c6f72422b..dab6cce74 100755 --- a/test_regress/t/t_dist_tabs.pl +++ b/test_regress/t/t_dist_tabs.pl @@ -27,7 +27,8 @@ if (!-r "$root/.git") { my $lineno = 0; foreach my $line ((split /\n/, $diff), "+++ b/_the_end") { if ($line =~ m!^\+\+\+ b/(.*)!) { - if ($file && !$atab && $btab) { + if ($file && !$atab && $btab + && $file !~ /\.out$/) { $summary = "File modifications adds new tabs (please untabify the patch):"; $warns{$file} = "File modification adds new tabs (please untabify the patch): $file"; }