summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/pr/Test.pm4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/pr/Test.pm b/tests/pr/Test.pm
index e60b0347f..8512bbf70 100644
--- a/tests/pr/Test.pm
+++ b/tests/pr/Test.pm
@@ -363,6 +363,10 @@ sub test_vector
my $sep = ($flags ? ' ' : '');
$flags = "$common_option_prefix$sep$flags";
push (@new_tv, [$test_name, $flags, $in, $exp, $ret]);
+
+ (my $new_flags = $flags) =~ s/(^| )-(\d+)( |$)/$1--columns=$2$3/g;
+ $new_flags ne $flags
+ and push (@new_tv, ["$test_name.C", $new_flags, $in, $exp, $ret]);
}
return @new_tv;