This is an automated email from the ASF dual-hosted git repository.
rhoughton pushed a commit to branch support/1.14
in repository https://gitbox.apache.org/repos/asf/geode.git
The following commit(s) were added to refs/heads/support/1.14 by this push:
new a58f935 debug stress-new-test
a58f935 is described below
commit a58f935d9c8627298b457b58948266e201fc3001
Author: Robert Houghton <[email protected]>
AuthorDate: Tue Mar 22 19:50:53 2022 -0700
debug stress-new-test
---
ci/scripts/repeat-new-tests.sh | 3 +++
1 file changed, 3 insertions(+)
diff --git a/ci/scripts/repeat-new-tests.sh b/ci/scripts/repeat-new-tests.sh
index 90dc7d8..dc4afb1 100755
--- a/ci/scripts/repeat-new-tests.sh
+++ b/ci/scripts/repeat-new-tests.sh
@@ -49,10 +49,13 @@ function changes_for_path() {
function save_classpath() {
echo "Building and saving classpath"
pushd geode >> /dev/null
+ printenv
+ set -x
BUILD_LOG=/tmp/classpath-build.log
# Do this twice since devBuild still dumps a warning string to stdout.
./gradlew --console=plain -q compileTestJava compileIntegrationTestJava
compileDistributedTestJava devBuild >${BUILD_LOG} 2>&1 || (cat ${BUILD_LOG};
false)
./gradlew --console=plain -q printTestClasspath 2>/dev/null
>/tmp/classpath.txt
+ set +x
popd >> /dev/null
}