You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by nd...@apache.org on 2015/04/23 01:39:13 UTC

phoenix git commit: PHOENIX-1888 [build] add pre-commit scripts -- remove non-existent profiles

Repository: phoenix
Updated Branches:
  refs/heads/master 669c87302 -> 827b6ae6e


PHOENIX-1888 [build] add pre-commit scripts -- remove non-existent profiles


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

Branch: refs/heads/master
Commit: 827b6ae6eb506aa347267af71f394b09ae1139fc
Parents: 669c873
Author: Nick Dimiduk <nd...@apache.org>
Authored: Wed Apr 22 16:39:10 2015 -0700
Committer: Nick Dimiduk <nd...@apache.org>
Committed: Wed Apr 22 16:39:10 2015 -0700

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


http://git-wip-us.apache.org/repos/asf/phoenix/blob/827b6ae6/dev/test-patch.sh
----------------------------------------------------------------------
diff --git a/dev/test-patch.sh b/dev/test-patch.sh
index a4c0b42..c7f24e6 100755
--- a/dev/test-patch.sh
+++ b/dev/test-patch.sh
@@ -689,9 +689,9 @@ checkProtocErrors () {
   echo "======================================================================"
   echo ""
   echo ""
-  echo "$MVN clean install -DskipTests -Pcompile-protobuf -X -D${PROJECT_NAME}PatchProcess > $PATCH_DIR/patchProtocErrors.txt 2>&1"
+  echo "$MVN clean install -DskipTests -X -D${PROJECT_NAME}PatchProcess > $PATCH_DIR/patchProtocErrors.txt 2>&1"
   export MAVEN_OPTS="${MAVEN_OPTS}"
-  $MVN clean install -DskipTests -Pcompile-protobuf -X -D${PROJECT_NAME}PatchProcess  > $PATCH_DIR/patchProtocErrors.txt 2>&1
+  $MVN clean install -DskipTests -X -D${PROJECT_NAME}PatchProcess  > $PATCH_DIR/patchProtocErrors.txt 2>&1
   checkProtocCompilationErrors $PATCH_DIR/patchProtocErrors.txt
   JIRA_COMMENT="$JIRA_COMMENT
 
@@ -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 -P runAllTests -D${PROJECT_NAME}PatchProcess"
+  echo "$MVN clean test -Dsurefire.rerunFailingTestsCount=2 -D${PROJECT_NAME}PatchProcess"
   export MAVEN_OPTS="${MAVEN_OPTS}"
   ulimit -a
-  $MVN clean test -Dsurefire.rerunFailingTestsCount=2 -P runAllTests -D${PROJECT_NAME}PatchProcess
+  $MVN clean test -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"`