File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
integration-tests/src/test
java/oracle/kubernetes/operator Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ public static void staticUnPrepare() throws Exception {
54
54
logger .info ("BEGIN" );
55
55
logger .info ("Run once, release cluster lease" );
56
56
57
- tearDown (new Object () {}.getClass ().getEnclosingClass ().getSimpleName ());
57
+ // tearDown(new Object() {}.getClass().getEnclosingClass().getSimpleName());
58
58
59
59
logger .info ("SUCCESS" );
60
60
}
@@ -95,8 +95,8 @@ public void testDomainOnPVUsingWLST() throws Exception {
95
95
96
96
testCompletedSuccessfully = true ;
97
97
} finally {
98
- if (domain != null && !SMOKETEST && (JENKINS || testCompletedSuccessfully ))
99
- domain .shutdownUsingServerStartPolicy ();
98
+ /* if (domain != null && !SMOKETEST && (JENKINS || testCompletedSuccessfully))
99
+ domain.shutdownUsingServerStartPolicy(); */
100
100
}
101
101
102
102
logger .info ("SUCCESS - " + testMethodName );
Original file line number Diff line number Diff line change @@ -96,10 +96,13 @@ function state_dump {
96
96
local outfile=${DUMP_DIR} /archive_pv_job.out
97
97
98
98
if [ " $JENKINS " = " true" ] || [ " $SHARED_CLUSTER " = " true" ]; then
99
+ echo " Running $SCRIPTPATH /krun.sh -i openjdk:11-oracle -t 300 -d ${RESULT_DIR} -m ${PV_ROOT} :/sharedparent -c 'jar cf /sharedparent/pvarchive.jar /sharedparent/acceptance_test_pv' 2>&1 | tee ${outfile} "
99
100
$SCRIPTPATH /krun.sh -i openjdk:11-oracle -t 300 -d ${RESULT_DIR} -m " ${PV_ROOT} :/sharedparent" -c ' jar cf /sharedparent/pvarchive.jar /sharedparent/acceptance_test_pv' 2>&1 | tee ${outfile}
100
101
if [ " $? " = " 0" ]; then
102
+ echo " Running $SCRIPTPATH /krun.sh -i openjdk:11-oracle -t 300 -d ${RESULT_DIR} -m ${PV_ROOT} :/sharedparent -c 'base64 /sharedparent/pvarchive.jar' > $RESULT_DIR /pvarchive.b64 2>&1"
101
103
$SCRIPTPATH /krun.sh -i openjdk:11-oracle -t 300 -d ${RESULT_DIR} -m " ${PV_ROOT} :/sharedparent" -c ' base64 /sharedparent/pvarchive.jar' > $RESULT_DIR /pvarchive.b64 2>&1
102
104
if [ " $? " = " 0" ]; then
105
+ echo " Running base64 -di $RESULT_DIR /pvarchive.b64 > $ARCHIVE "
103
106
base64 -di $RESULT_DIR /pvarchive.b64 > $ARCHIVE
104
107
if [ " $? " = " 0" ]; then
105
108
echo Run complete. Archived to $ARCHIVE
You can’t perform that action at this time.
0 commit comments