Merge -r 1185921:1185922 from trunk to branch-0.23. Fixes:HADOOP-7755.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.23@1185923 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a9fe990f7b
commit
dfe8f79cde
|
@ -595,20 +595,23 @@ runTests () {
|
|||
echo "======================================================================"
|
||||
echo ""
|
||||
echo ""
|
||||
|
||||
|
||||
echo "$MVN clean install test -Pnative -D${PROJECT_NAME}PatchProcess"
|
||||
$MVN clean install test -Pnative -D${PROJECT_NAME}PatchProcess
|
||||
if [[ $? != 0 ]] ; then
|
||||
### Find and format names of failed tests
|
||||
failed_tests=`find . -name 'TEST*.xml' | xargs $GREP -l -E "<failure|<error" | sed -e "s|.*target/surefire-reports/TEST-| |g" | sed -e "s|\.xml||g"`
|
||||
fi
|
||||
|
||||
if [[ -n "$failed_tests" ]] ; then
|
||||
|
||||
JIRA_COMMENT="$JIRA_COMMENT
|
||||
|
||||
if [[ -n "$failed_tests" ]] ; then
|
||||
JIRA_COMMENT="$JIRA_COMMENT
|
||||
|
||||
-1 core tests. The patch failed these unit tests:
|
||||
$failed_tests"
|
||||
else
|
||||
JIRA_COMMENT="$JIRA_COMMENT
|
||||
|
||||
-1 core tests. The patch failed the unit tests build"
|
||||
fi
|
||||
return 1
|
||||
fi
|
||||
JIRA_COMMENT="$JIRA_COMMENT
|
||||
|
|
|
@ -656,6 +656,9 @@ Release 0.23.0 - Unreleased
|
|||
HADOOP-7708. Fixed hadoop-setup-conf.sh to handle config file
|
||||
consistently. (Eric Yang)
|
||||
|
||||
HADOOP-7755. Detect MapReduce PreCommit Trunk builds silently failing
|
||||
when running test-patch.sh. (Jonathan Eagles via tomwhite)
|
||||
|
||||
Release 0.22.0 - Unreleased
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
Loading…
Reference in New Issue