From 8f1655749958478e8d1b54fcd53754cc696bfeac Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Wed, 12 Dec 2018 22:19:33 -0500 Subject: [PATCH] Tests: Less verbose --- test_regress/t/t_flag_csplit.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_regress/t/t_flag_csplit.pl b/test_regress/t/t_flag_csplit.pl index 6eee47b40..cdcf4f0c5 100755 --- a/test_regress/t/t_flag_csplit.pl +++ b/test_regress/t/t_flag_csplit.pl @@ -82,7 +82,7 @@ sub check_gcc_flags { if ($line =~ /\.cpp/) { my $filetype = ($line =~ /Slow/) ? "slow":"fast"; my $opt = ($line !~ /-O2/) ? "slow":"fast"; - print "$filetype, $opt, $line\n"; + print "$filetype, $opt, $line\n" if $Self->{verbose}; if ($filetype ne $opt) { error("${filetype} file compiled as if was ${opt}: $line"); }