You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pig.apache.org by ga...@apache.org on 2011/05/02 22:20:25 UTC

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

Author: gates
Date: Mon May  2 20:20:25 2011
New Revision: 1098772

URL: http://svn.apache.org/viewvc?rev=1098772&view=rev
Log:
PIG-2019: smoketest-jar target has to depend on pigunit-jar to guarantee inclusion of test classes

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

Modified: pig/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/pig/trunk/CHANGES.txt?rev=1098772&r1=1098771&r2=1098772&view=diff
==============================================================================
--- pig/trunk/CHANGES.txt (original)
+++ pig/trunk/CHANGES.txt Mon May  2 20:20:25 2011
@@ -30,6 +30,9 @@ PIG-2011: Speed up TestTypedMap.java (dv
 
 BUG FIXES
 
+PIG-2019: smoketest-jar target has to depend on pigunit-jar to guarantee
+inclusion of test classes (cos via gates)
+
 Release 0.9.0 - Unreleased
 
 INCOMPATIBLE CHANGES

Modified: pig/trunk/build.xml
URL: http://svn.apache.org/viewvc/pig/trunk/build.xml?rev=1098772&r1=1098771&r2=1098772&view=diff
==============================================================================
--- pig/trunk/build.xml (original)
+++ pig/trunk/build.xml Mon May  2 20:20:25 2011
@@ -559,7 +559,8 @@
         <copy file="${output.jarfile}" tofile="${output.jarfile.backcompat}"/>
     </target>
 
-    <target name="smoketests-jar" description="Creating jar file for smoke tests">
+    <target name="smoketests-jar" depends="pigunit-jar"
+        description="Creating jar file for smoke tests">
       <echo> *** Creating smoke tests jar for pigunit ***</echo>
       <jar jarfile="${smoke.tests.jarfile}" basedir="${test.build.classes}"
            includes="org/apache/pig/test/pigunit/**/*">