Author: cos
Date: Fri Jul 16 20:26:05 2010
New Revision: 964939
URL: http://svn.apache.org/viewvc?rev=964939&view=rev
Log:
HADOOP-6860. 'compile-fault-inject' should never be called directly.
Contributed by Konstantin Boudnik.
Modified:
hadoop/common/trunk/CHANGES.txt
hadoop/common/trunk/src/test/aop/build/aop.xml
Modified: hadoop/common/trunk/CHANGES.txt
URL:
http://svn.apache.org/viewvc/hadoop/common/trunk/CHANGES.txt?rev=964939&r1=964938&r2=964939&view=diff
==============================================================================
--- hadoop/common/trunk/CHANGES.txt (original)
+++ hadoop/common/trunk/CHANGES.txt Fri Jul 16 20:26:05 2010
@@ -1038,6 +1038,9 @@ Release 0.21.0 - Unreleased
BUG FIXES
+ HADOOP-6860. 'compile-fault-inject' should never be called directly.
+ (Konstantin Boudnik)
+
HADOOP-6836. [Herriot]: Generic method for adding/modifying the attributes
for new configuration. (Vinay Thota via cos)
Modified: hadoop/common/trunk/src/test/aop/build/aop.xml
URL:
http://svn.apache.org/viewvc/hadoop/common/trunk/src/test/aop/build/aop.xml?rev=964939&r1=964938&r2=964939&view=diff
==============================================================================
--- hadoop/common/trunk/src/test/aop/build/aop.xml (original)
+++ hadoop/common/trunk/src/test/aop/build/aop.xml Fri Jul 16 20:26:05 2010
@@ -50,7 +50,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">
@@ -143,7 +143,7 @@
<attribute name="dest.dir" />
<attribute name="src.dir" />
<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}" />