File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/integration-tests/bash Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1550,25 +1550,25 @@ EOF
1550
1550
local maxwaitsecs=180
1551
1551
local failedonce=" false"
1552
1552
while : ; do
1553
- eval " $mycommand " " $@ " > ${pyfile } .out 2>&1
1553
+ eval " $mycommand " " $@ " > ${pyfile_lcl } .out 2>&1
1554
1554
local result=" $? "
1555
1555
1556
1556
# '+' marks verbose tracing
1557
- cat ${pyfile } .out | sed ' s/^/+/'
1557
+ cat ${pyfile_lcl } .out | sed ' s/^/+/'
1558
1558
1559
1559
if [ " $result " = " 0" ];
1560
1560
then
1561
1561
break
1562
1562
fi
1563
1563
1564
1564
if [ " $failedonce " = " false" ]; then
1565
- cp ${pyfile } .out ${pyfile } .out.firstfail
1565
+ cp ${pyfile_lcl } .out ${pyfile_lcl } .out.firstfail
1566
1566
failedonce=" true"
1567
1567
fi
1568
1568
1569
1569
local mnow=` date +%s`
1570
1570
if [ $(( mnow - mstart)) -gt $(( maxwaitsecs)) ]; then
1571
- cat ${pyfile } .out.firstfail
1571
+ cat ${pyfile_lcl } .out.firstfail
1572
1572
fail " Could not successfully run WLST script ${pyfile_lcl} on pod ${AS_NAME} via ${t3url} within ${maxwaitsecs} seconds. Giving up."
1573
1573
fi
1574
1574
You can’t perform that action at this time.
0 commit comments