Author: cos
Date: Wed Jul 14 18:27:15 2010
New Revision: 964123
URL: http://svn.apache.org/viewvc?rev=964123&view=rev
Log:
HDFS-1299. 'compile-fault-inject' never should be called directly. Contributed
by Konstantin Boudnik
Modified:
hadoop/hdfs/trunk/CHANGES.txt
hadoop/hdfs/trunk/src/test/aop/build/aop.xml
Modified: hadoop/hdfs/trunk/CHANGES.txt
URL:
http://svn.apache.org/viewvc/hadoop/hdfs/trunk/CHANGES.txt?rev=964123&r1=964122&r2=964123&view=diff
==============================================================================
--- hadoop/hdfs/trunk/CHANGES.txt (original)
+++ hadoop/hdfs/trunk/CHANGES.txt Wed Jul 14 18:27:15 2010
@@ -670,6 +670,8 @@ Release 0.21.0 - Unreleased
BUG FIXES
+ HDFS-1299. 'compile-fault-inject' never should be called directly. (cos)
+
HDFS-1193. -mvn-system-deploy target is broken which inturn fails the
mvn-deploy task leading to unstable mapreduce build (Giridharan
Kesavan via cos)
Modified: hadoop/hdfs/trunk/src/test/aop/build/aop.xml
URL:
http://svn.apache.org/viewvc/hadoop/hdfs/trunk/src/test/aop/build/aop.xml?rev=964123&r1=964122&r2=964123&view=diff
==============================================================================
--- hadoop/hdfs/trunk/src/test/aop/build/aop.xml (original)
+++ hadoop/hdfs/trunk/src/test/aop/build/aop.xml Wed Jul 14 18:27:15 2010
@@ -63,7 +63,7 @@
<!-- Target -classes-compilation has to be defined in build.xml and
needs to depend on classes compilation and test classes compilation
targets. This is a poor man parametrization for targets -->
- <target name="compile-fault-inject" depends="-classes-compilation" >
+ <target name="-compile-fault-inject" depends="-classes-compilation" >
<!-- AspectJ task definition -->
<taskdef
resource="org/aspectj/tools/ant/taskdefs/aspectjTaskdefs.properties">
@@ -198,7 +198,7 @@
<attribute name="src.dir" />
<attribute name="aspects.jar"/>
<sequential>
- <subant buildpath="build.xml" target="compile-fault-inject"
+ <subant buildpath="build.xml" target="-compile-fault-inject"
output="${compile-inject.output}">
<property name="build.dir" value="${build-fi.dir}" />
<property name="src.dir.path" value="@{src.dir}" />