From 4a38f9dfd59b525c6ed576d3c907debb3737c128 Mon Sep 17 00:00:00 2001 From: Steve Hancock Date: Mon, 11 Dec 2023 07:37:48 -0800 Subject: [PATCH] exclude all dump- parameters from random testing --- dev-bin/perltidy_random_setup.pl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dev-bin/perltidy_random_setup.pl b/dev-bin/perltidy_random_setup.pl index 5e9d8333..0ac938fb 100755 --- a/dev-bin/perltidy_random_setup.pl +++ b/dev-bin/perltidy_random_setup.pl @@ -1376,6 +1376,9 @@ EOM next if $skip{$name}; + # skip all dump options; they dump to stdout and exit + next if ($name=~/^dump-/); + # Skip all pattern lists if ( $flag =~ /s$/ ) { if ( $name =~ /-(list|prefix)/ -- 2.39.5