|
@@ -234,6 +234,21 @@ function add_jira_table
|
|
fi
|
|
fi
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+## @description Put the final environment information at the bottom
|
|
|
|
+## @description of the footer table
|
|
|
|
+## @stability stable
|
|
|
|
+## @audience private
|
|
|
|
+## @replaceable yes
|
|
|
|
+function close_jira_footer
|
|
|
|
+{
|
|
|
|
+ # shellcheck disable=SC2016
|
|
|
|
+ local -r javaversion=$("${JAVA_HOME}/bin/java" -version 2>&1 | head -1 | ${AWK} '{print $NF}' | tr -d \")
|
|
|
|
+ local -r unamea=$(uname -a)
|
|
|
|
+
|
|
|
|
+ add_jira_footer "Java" "${javaversion}"
|
|
|
|
+ add_jira_footer "uname" "${unamea}"
|
|
|
|
+}
|
|
|
|
+
|
|
## @description Put the final elapsed time at the bottom of the table.
|
|
## @description Put the final elapsed time at the bottom of the table.
|
|
## @audience private
|
|
## @audience private
|
|
## @stability stable
|
|
## @stability stable
|
|
@@ -2389,6 +2404,8 @@ postinstall
|
|
|
|
|
|
runtests
|
|
runtests
|
|
|
|
|
|
|
|
+close_jira_footer
|
|
|
|
+
|
|
close_jira_table
|
|
close_jira_table
|
|
|
|
|
|
output_to_console ${RESULT}
|
|
output_to_console ${RESULT}
|