You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by st...@apache.org on 2015/12/22 07:16:54 UTC

hbase git commit: HBASE-15021 hadoopqa doing false positives

Repository: hbase
Updated Branches:
  refs/heads/master f018c371b -> 53e5d27a8


HBASE-15021 hadoopqa doing false positives


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/53e5d27a
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/53e5d27a
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/53e5d27a

Branch: refs/heads/master
Commit: 53e5d27a80081c23919392a106ddae94be1ac16c
Parents: f018c37
Author: stack <st...@apache.org>
Authored: Mon Dec 21 22:16:06 2015 -0800
Committer: stack <st...@apache.org>
Committed: Mon Dec 21 22:16:38 2015 -0800

----------------------------------------------------------------------
 dev-support/test-patch.sh | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/53e5d27a/dev-support/test-patch.sh
----------------------------------------------------------------------
diff --git a/dev-support/test-patch.sh b/dev-support/test-patch.sh
index 9366319..509edeb 100755
--- a/dev-support/test-patch.sh
+++ b/dev-support/test-patch.sh
@@ -841,14 +841,13 @@ runTests () {
   echo "======================================================================"
   echo ""
   echo ""
-
   failed_tests=""
   echo "$MVN clean test -Dsurefire.rerunFailingTestsCount=2 -P runAllTests -D${PROJECT_NAME}PatchProcess"
   export MAVEN_OPTS="${MAVEN_OPTS}"
   ulimit -a
-  $MVN clean test -Dsurefire.rerunFailingTestsCount=2 -P runAllTests -D${PROJECT_NAME}PatchProcess
   # Need to export this so the zombie subshell picks up current content
   export JIRA_COMMENT
+  $MVN clean test -Dsurefire.rerunFailingTestsCount=2 -P runAllTests -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"`