Skip to content

Commit 9555465

Browse files
committed
change PV_ROOT for java tests, add more debug
1 parent ad1a9cf commit 9555465

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

integration-tests/src/test/java/oracle/kubernetes/operator/ITSingleDomain.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,9 @@ public static void staticUnPrepare() throws Exception {
9898
+ "/src/integration-tests/bash/cleanup.sh";
9999
ExecResult result = ExecCommand.exec(cmd);
100100
if (result.exitValue() != 0) {
101-
logger.info("FAILED: command to call cleanup script failed " + cmd + result.stderr());
101+
logger.info("FAILED: command to call cleanup script " + cmd + " failed " + result.stderr());
102102
}
103+
logger.info("Command " + cmd + " returned " + result.stdout() + "\n" + result.stderr());
103104
}
104105
logger.info("SUCCESS");
105106
}

wercker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ integration-test-java:
259259
$WERCKER_SOURCE_DIR/src/integration-tests/bash/lease.sh -o "$LEASE_ID" -t $((100 * 60))
260260
echo @@
261261
262-
export HOST_PATH="/scratch"
262+
export HOST_PATH="/scratch/wl_k8s_java_test_results"
263263
export PV_ROOT=$HOST_PATH
264264
export RESULT_ROOT="$WERCKER_OUTPUT_DIR/k8s_dir"
265265
mkdir -m 777 -p $RESULT_ROOT

0 commit comments

Comments
 (0)