浏览代码

HDDS-2217. Remove log4j and audit configuration from the docker-config files

Closes #1582
Doroszlai, Attila 5 年之前
父节点
当前提交
4b0a5bca46
共有 1 个文件被更改,包括 5 次插入0 次删除
  1. 5 0
      hadoop-ozone/dev-support/checks/_mvn_unit_report.sh

+ 5 - 0
hadoop-ozone/dev-support/checks/_mvn_unit_report.sh

@@ -45,6 +45,11 @@ grep -A1 'Crashed tests' "${REPORT_DIR}/output.log" \
   | cut -f2- -d' ' \
   | sort -u >> "${REPORT_DIR}/summary.txt"
 
+## Check if Maven was killed
+if grep -q 'Killed.* mvn .* test ' "${REPORT_DIR}/output.log"; then
+  echo 'Maven test run was killed' >> "${REPORT_DIR}/summary.txt"
+fi
+
 #Collect of all of the report failes of FAILED tests
 while IFS= read -r -d '' dir; do
    while IFS=$'\n' read -r file; do