File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1111use strict;
1212use Time::HiRes qw(gettimeofday sleep);
1313use POSIX qw(WIFEXITED WEXITSTATUS WIFSIGNALED WTERMSIG);
14- use File::Spec qw(rel2abs);
14+ use File::Spec::Functions qw(rel2abs);
1515use File::Basename qw(basename dirname);
1616use FileHandle;
1717use IPC::Open2 qw(open2);
@@ -54,7 +54,7 @@ $SIG{TERM} = $SIG{INT} = \&handle_interrupt;
5454my $platform = "apache";
5555
5656my %opt;
57- getopts('A:E:D:C:T:H:a:p:dvh', \%opt);
57+ getopts('A:E:D:C:T:H:S: a:p:dvh', \%opt);
5858
5959if ($opt{d}) {
6060 $Data::Dumper::Indent = 1;
@@ -125,7 +125,7 @@ unless (defined $opt{S}) {
125125 LOGS_DIR => $FILES_DIR,
126126 SCRIPT_DIR => $SCRIPT_DIR,
127127 REGRESSION_DIR => $REG_DIR,
128- DIST_ROOT => File::Spec->rel2abs(dirname("$SCRIPT_DIR/../../.. ")),
128+ DIST_ROOT => File::Spec->rel2abs(dirname("$SCRIPT_DIR/../..")),
129129 AUDIT_LOG => $opt{A},
130130 DEBUG_LOG => $opt{D},
131131 ERROR_LOG => $opt{E},
You can’t perform that action at this time.
0 commit comments