File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change 32
32
my $tconfig = " " ; # test config
33
33
my $rpt_dest = " " ;
34
34
my $show_help = 0;
35
+ my $verbosity = -1;
35
36
my @modifiers_key = ();
36
37
my @modifiers_val = ();
37
38
50
51
[--tconfig {test configuration name, use defaults if not specified} ]
51
52
[--rpt_dest {Copy report to destination once it is complete} ]
52
53
[--cmd { command to send to the GUI } ]
54
+ [--verbosity { report verbosity 1 - 11 } ]
53
55
[--modifier "
54
56
55
57
Example:
75
77
' rpt_dest=s' => \$rpt_dest ,
76
78
' port=s' => \$port ,
77
79
' cmd|c=s' => \$cmd ,
80
+ ' verbosity|v=i' => \$verbosity ,
78
81
) || die (" $usage " );
79
82
80
83
if ($show_help ) {
141
144
if ($tconfig ne " " ) {
142
145
print doCmd(" cv load '$tname ' '$tconfig '" );
143
146
}
147
+ if ($verbosity >= 1) {
148
+ print doCmd(" cv set '$tname ' 'VERBOSITY' '$verbosity '" );
149
+ }
144
150
print doCmd(" cv click '$tname ' 'Auto Save Report'" );
145
151
146
152
for ($i = 0; $i <@modifiers_key ; $i ++) {
You can’t perform that action at this time.
0 commit comments