Ted Yu created HBASE-11051:
------------------------------
Summary: checkJavacWarnings in test-patch.sh should bail out early
if there is compilation error
Key: HBASE-11051
URL: https://issues.apache.org/jira/browse/HBASE-11051
Project: HBase
Issue Type: Test
Reporter: Ted Yu
Priority: Minor
Currently checkJavacWarnings doesn't exit QA script in the presence of
compilation error.
Here is one example:
https://builds.apache.org/job/PreCommit-HBASE-Build/9360/console .
checkJavacWarnings should do the following so that it is clear what caused the
QA run to fail:
{code}
if [[ $? != 0 ]] ; then
ERR=`$GREP -A 5 'Compilation failure' $PATCH_DIR/trunkJavacWarnings.txt`
echo "Trunk compilation is broken?
{code}$ERR{code}"
cleanupAndExit 1
fi
{code}
--
This message was sent by Atlassian JIRA
(v6.2#6252)