From 1029060e616358449aa3919739116883085208d8 Mon Sep 17 00:00:00 2001 From: "Doroszlai, Attila" Date: Thu, 19 Sep 2019 10:41:00 +0200 Subject: [PATCH] HDDS-2147. Include dumpstream in test report Closes #1470 --- hadoop-ozone/dev-support/checks/_mvn_unit_report.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/hadoop-ozone/dev-support/checks/_mvn_unit_report.sh b/hadoop-ozone/dev-support/checks/_mvn_unit_report.sh index bb29d40fa69..9525a9fcd4e 100755 --- a/hadoop-ozone/dev-support/checks/_mvn_unit_report.sh +++ b/hadoop-ozone/dev-support/checks/_mvn_unit_report.sh @@ -23,8 +23,11 @@ find "." -name 'TEST*.xml' -print0 \ | tee "$REPORT_DIR/summary.txt" #Copy heap dump and dump leftovers -find "." -name "*.hprof" -exec cp {} "$REPORT_DIR/" \; -find "." -name "*.dump" -exec cp {} "$REPORT_DIR/" \; +find "." -name "*.hprof" \ + -or -name "*.dump" \ + -or -name "*.dumpstream" \ + -or -name "hs_err_*.log" \ + -exec cp {} "$REPORT_DIR/" \; ## Add the tests where the JVM is crashed grep -A1 'Crashed tests' "${REPORT_DIR}/output.log" \