You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pig.apache.org by da...@apache.org on 2010/06/17 22:43:41 UTC

svn commit: r955733 - in /hadoop/pig/trunk: CHANGES.txt build.xml

Author: daijy
Date: Thu Jun 17 20:43:41 2010
New Revision: 955733

URL: http://svn.apache.org/viewvc?rev=955733&view=rev
Log:
PIG-1457: Pig will run complete zebra test even we give -Dtestcase=xxx

Modified:
    hadoop/pig/trunk/CHANGES.txt
    hadoop/pig/trunk/build.xml

Modified: hadoop/pig/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/hadoop/pig/trunk/CHANGES.txt?rev=955733&r1=955732&r2=955733&view=diff
==============================================================================
--- hadoop/pig/trunk/CHANGES.txt (original)
+++ hadoop/pig/trunk/CHANGES.txt Thu Jun 17 20:43:41 2010
@@ -86,6 +86,8 @@ PIG-1309: Map-side Cogroup (ashutoshc)
 
 BUG FIXES
 
+PIG-1457: Pig will run complete zebra test even we give -Dtestcase=xxx (daijy)
+
 PIG-1450: TestAlgebraicEvalLocal failures due to OOM (daijy)
 
 PIG-1433: pig should create success file if

Modified: hadoop/pig/trunk/build.xml
URL: http://svn.apache.org/viewvc/hadoop/pig/trunk/build.xml?rev=955733&r1=955732&r2=955733&view=diff
==============================================================================
--- hadoop/pig/trunk/build.xml (original)
+++ hadoop/pig/trunk/build.xml Thu Jun 17 20:43:41 2010
@@ -612,9 +612,13 @@
     
     <target name="test" description="to call the test-core and test-contrib target">
 	<antcall target="test-core" inheritRefs="true" inheritall="true"/>
-	<antcall target="test-contrib" inheritRefs="true" inheritall="true"/>
+	<antcall target="test-contrib-internal" inheritRefs="true" inheritall="true"/>
     </target>    
 
+    <target name="test-contrib-internal" unless="testcase">
+        <antcall target="test-contrib" inheritRefs="true" inheritall="true"/>
+    </target>
+
     <target name="test-contrib" depends="compile-test" description="to call contrib tests">
         <subant target="pigtest" buildpath="contrib/zebra" antfile="build.xml"/>
     </target>