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 11
11
use strict;
12
12
use Time::HiRes qw(gettimeofday sleep);
13
13
use POSIX qw(WIFEXITED WEXITSTATUS WIFSIGNALED WTERMSIG);
14
- use File::Spec qw(rel2abs);
14
+ use File::Spec::Functions qw(rel2abs);
15
15
use File::Basename qw(basename dirname);
16
16
use FileHandle;
17
17
use IPC::Open2 qw(open2);
@@ -54,7 +54,7 @@ $SIG{TERM} = $SIG{INT} = \&handle_interrupt;
54
54
my $platform = "apache";
55
55
56
56
my %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);
58
58
59
59
if ($opt{d}) {
60
60
$Data::Dumper::Indent = 1;
@@ -125,7 +125,7 @@ unless (defined $opt{S}) {
125
125
LOGS_DIR => $FILES_DIR,
126
126
SCRIPT_DIR => $SCRIPT_DIR,
127
127
REGRESSION_DIR => $REG_DIR,
128
- DIST_ROOT => File::Spec->rel2abs(dirname("$SCRIPT_DIR/../../.. ")),
128
+ DIST_ROOT => File::Spec->rel2abs(dirname("$SCRIPT_DIR/../..")),
129
129
AUDIT_LOG => $opt{A},
130
130
DEBUG_LOG => $opt{D},
131
131
ERROR_LOG => $opt{E},
You can’t perform that action at this time.
0 commit comments