You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pig.apache.org by gd...@apache.org on 2012/10/01 23:33:52 UTC

svn commit: r1392633 - in /pig/trunk: CHANGES.txt test/e2e/pig/build.xml

Author: gdfm
Date: Mon Oct  1 21:33:52 2012
New Revision: 1392633

URL: http://svn.apache.org/viewvc?rev=1392633&view=rev
Log:
PIG-2920: e2e tests override PERL5LIB environment variable (azaroth)

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

Modified: pig/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/pig/trunk/CHANGES.txt?rev=1392633&r1=1392632&r2=1392633&view=diff
==============================================================================
--- pig/trunk/CHANGES.txt (original)
+++ pig/trunk/CHANGES.txt Mon Oct  1 21:33:52 2012
@@ -285,6 +285,8 @@ OPTIMIZATIONS
 
 BUG FIXES
 
+PIG-2920: e2e tests override PERL5LIB environment variable (azaroth)
+
 PIG-2917: SpillableMemoryManager memory leak for WeakReference (haitao.yao via dvryaboy)
 
 PIG-2938: All unit tests that use MR2 MiniCluster are broken in trunk (cheolsoo via dvryaboy)

Modified: pig/trunk/test/e2e/pig/build.xml
URL: http://svn.apache.org/viewvc/pig/trunk/test/e2e/pig/build.xml?rev=1392633&r1=1392632&r2=1392633&view=diff
==============================================================================
--- pig/trunk/test/e2e/pig/build.xml (original)
+++ pig/trunk/test/e2e/pig/build.xml Mon Oct  1 21:33:52 2012
@@ -48,6 +48,7 @@
   <property name="harness.tar" value="${harness.dir}/harness.tar"/>
   <property name="harness.PH_LOCAL" value="."/>
   <property name="harness.PH_OUT" value="."/>
+  <property name="harness.PERL5LIB" value="./libexec"/>
 
   <property name="test.location" value="${basedir}/testdist"/>
   <property name="benchmark.location" value="${test.location}/benchmarks"/>
@@ -270,7 +271,7 @@
       <env key="PH_OLD_CLUSTER_CONF" value="${PH_OLD_CLUSTER_CONF}"/>
       <env key="PH_BENCHMARK_CACHE_PATH" value="${PH_BENCHMARK_CACHE_PATH}"/>
       <env key="HCAT_BIN" value="${hcat.bin}"/>
-      <env key="PERL5LIB" value="./libexec"/>
+      <env key="PERL5LIB" value="${harness.PERL5LIB}"/>
       <arg line="${tests.to.run}"/>
       <arg value="${test.location}/tests/cmdline.conf"/>
       <arg value="${test.location}/tests/multiquery.conf"/>