You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by ra...@apache.org on 2015/04/27 22:34:58 UTC

phoenix git commit: PHOENIX-1925 Make buildbot scripts to run integration tests as well(Rajeshbabu)

Repository: phoenix
Updated Branches:
  refs/heads/master 0e87d666f -> a9af6fe65


PHOENIX-1925 Make buildbot scripts to run integration tests as well(Rajeshbabu)


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

Branch: refs/heads/master
Commit: a9af6fe65f46c3830da33caf8d34b292258388eb
Parents: 0e87d66
Author: Rajeshbabu Chintaguntla <ra...@apache.org>
Authored: Tue Apr 28 02:04:58 2015 +0530
Committer: Rajeshbabu Chintaguntla <ra...@apache.org>
Committed: Tue Apr 28 02:04:58 2015 +0530

----------------------------------------------------------------------
 dev/test-patch.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/phoenix/blob/a9af6fe6/dev/test-patch.sh
----------------------------------------------------------------------
diff --git a/dev/test-patch.sh b/dev/test-patch.sh
index 1ed7e62..5ee1607 100755
--- a/dev/test-patch.sh
+++ b/dev/test-patch.sh
@@ -850,10 +850,10 @@ runTests () {
   condemnedCount=`$PS auxwww | $GREP ${PROJECT_NAME}PatchProcess | $AWK '{print $2}' | $AWK 'BEGIN {total = 0} {total += 1} END {print total}'`
   echo "WARNING: $condemnedCount rogue build processes detected, terminating."
   $PS auxwww | $GREP ${PROJECT_NAME}PatchProcess | $AWK '{print $2}' | /usr/bin/xargs -t -I {} /bin/kill -9 {} > /dev/null
-  echo "$MVN clean test -Dsurefire.rerunFailingTestsCount=2 -D${PROJECT_NAME}PatchProcess"
+  echo "$MVN clean verify -Dsurefire.rerunFailingTestsCount=2 -D${PROJECT_NAME}PatchProcess"
   export MAVEN_OPTS="${MAVEN_OPTS}"
   ulimit -a
-  $MVN clean test -Dsurefire.rerunFailingTestsCount=2 -D${PROJECT_NAME}PatchProcess
+  $MVN clean verify -Dsurefire.rerunFailingTestsCount=2 -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"`