HBASE-593 build on hudson failing compiling jsp
git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@656518 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
bcdb066cae
commit
1f3606e5b0
|
@ -339,7 +339,11 @@
|
|||
<pathelement location="${build.dir}"/>
|
||||
</path>
|
||||
|
||||
<target name="compile-test" depends="compile" >
|
||||
<!--'compile-test' used to depend on 'compile' but removed it. Hudson doesn't like
|
||||
redoing init and jscpc at this stage of the game; i.e. the prereqs
|
||||
for compile. TODO: Investigate why. For now, test will fail
|
||||
if not preceeded by manual 'jar' or 'compile' invokation -->
|
||||
<target name="compile-test" >
|
||||
<javac encoding="${build.encoding}"
|
||||
srcdir="${src.test}"
|
||||
includes="**/*.java"
|
||||
|
@ -358,7 +362,7 @@
|
|||
</jar>
|
||||
</target>
|
||||
|
||||
<target name="test" depends="compile-test, compile" >
|
||||
<target name="test" depends="compile-test" >
|
||||
<delete dir="${test.log.dir}"/>
|
||||
<mkdir dir="${test.log.dir}"/>
|
||||
<junit
|
||||
|
|
Loading…
Reference in New Issue