You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oozie.apache.org by rk...@apache.org on 2013/02/04 19:04:01 UTC

svn commit: r1442279 - in /oozie/branches/branch-3.3: bin/test-patch-20-tests release-log.txt

Author: rkanter
Date: Mon Feb  4 18:04:01 2013
New Revision: 1442279

URL: http://svn.apache.org/viewvc?rev=1442279&view=rev
Log:
OOZIE-1194 test-patch shouldn't run the testHive profile because it not longer exists (rkanter)

Modified:
    oozie/branches/branch-3.3/bin/test-patch-20-tests
    oozie/branches/branch-3.3/release-log.txt

Modified: oozie/branches/branch-3.3/bin/test-patch-20-tests
URL: http://svn.apache.org/viewvc/oozie/branches/branch-3.3/bin/test-patch-20-tests?rev=1442279&r1=1442278&r2=1442279&view=diff
==============================================================================
--- oozie/branches/branch-3.3/bin/test-patch-20-tests (original)
+++ oozie/branches/branch-3.3/bin/test-patch-20-tests Mon Feb  4 18:04:01 2013
@@ -91,15 +91,6 @@ case $OP in
         -Dmaven.test.error.ignore=true -fae -Doozie.test.waitfor.ratio=3 \
         -Dtest.timeout=7200 | tee ${TEMPDIR}/${TASKNAME}.out >> $STDOUT
     exitCode=${PIPESTATUS[0]}
-    if [[ ! "${MVNPASSTHRU}" =~ "-Dtest=" || ("${MVNPASSTHRU}" =~ "TestHiveActionExecutor" || "${MVNPASSTHRU}" =~ "TestHiveMain") ]] ; then
-        # we need to do this 2nd run because Pig 0.9 and Hive 0.9 require different
-        # versions of antlr. Once we move to Pig 0.10 then we don't need this.
-        mvn test -Dtest=TestHiveActionExecutor,TestHiveMain ${MVNPASSTHRU} \
-            -PtestHive -Dmaven.test.failure.ignore=true -Dmaven.test.error.ignore=true \
-            -fae -Doozie.test.waitfor.ratio=3 -Dtest.timeout=7200 \
-            | tee -a ${TEMPDIR}/${TASKNAME}.out >> $STDOUT
-        exitCode=`expr $exitCode + ${PIPESTATUS[0]}`
-    fi
     echo "$exitCode" >  ${TEMPDIR}/${TASKNAME}.exitCode
     ;;
   report)

Modified: oozie/branches/branch-3.3/release-log.txt
URL: http://svn.apache.org/viewvc/oozie/branches/branch-3.3/release-log.txt?rev=1442279&r1=1442278&r2=1442279&view=diff
==============================================================================
--- oozie/branches/branch-3.3/release-log.txt (original)
+++ oozie/branches/branch-3.3/release-log.txt Mon Feb  4 18:04:01 2013
@@ -1,5 +1,6 @@
 -- Oozie 3.3.2 (unreleased)
 
+OOZIE-1194 test-patch shouldn't run the testHive profile because it not longer exists (rkanter)
 OOZIE-1193 upgrade jython to 2.5.3 for Pig in Oozie due to jython 2.5.0 legal issues (bowenzhangusa via rkanter)
 OOZIE-1172 Add documentation on how to get Java actions to authenticate properly on Kerberos-enabled clusters (rkanter)
 OOZIE-87 GH-47: Feature to supply a comma separated list of jars in an 'archive tag' of workflow (jaoki via rkanter)