dnl with some compilers like guavac).
AC_DEFUN([AX_PROG_JAVAC],[
-test -z "$JAVAC" && AC_CHECK_PROGS(JAVAC, "gcj -C" guavac jikes javac)
+test -z "$JAVAC" && AC_CHECK_PROGS(JAVAC, "gcj -C" guavac javac)
test -z "$JAVAC" && AC_MSG_ERROR([no acceptable Java compiler found in \$PATH])
AX_PROG_JAVAC_WORKS
])
<description>Thrift Build File</description>
+ <property name="gen" location="gen-java" />
+ <property name="genbean" location="gen-javabean" />
+
<property name="src" location="src" />
<property name="build" location="build" />
<property name="install.path" value="/usr/local/lib" />
+ <property name="src.test" location="test" />
+ <property name="build.test" location="${build}/test" />
+
+ <property name="test.thrift.home" location="../../test"/>
+ <property file="${user.home}/.thrift-build.properties" />
+
+ <property name="cpath" location="libthrift.jar:${thrift.extra.cpath}" />
+
<target name="init">
<tstamp />
<mkdir dir="${build}"/>
+ <mkdir dir="${build.test}" />
</target>
<target name="compile" depends="init">
<target name="clean">
<delete dir="${build}" />
+ <delete dir="${gen}"/>
+ <delete dir="${genbean}"/>
<delete file="libthrift.jar" />
</target>
+ <target name="compile-test" description="Build the test suite classes" depends="generate,dist">
+ <javac debug="true" srcdir="${gen}" destdir="${build.test}" classpath="${cpath}" />
+ <javac debug="true" srcdir="${genbean}" destdir="${build.test}" classpath="${cpath}" />
+ <javac debug="true" srcdir="${src.test}" destdir="${build.test}" classpath="${cpath}:${gen}" />
+ </target>
+
+ <target name="test" description="Run the full test suite" depends="compile-test">
+ <java classname="org.apache.thrift.test.JSONProtoTest"
+ classpath="${cpath}:${build.test}" failonerror="true" />
+ <java classname="org.apache.thrift.test.IdentityTest"
+ classpath="${cpath}:${build.test}" failonerror="true" />
+ <java classname="org.apache.thrift.test.EqualityTest"
+ classpath="${cpath}:${build.test}" failonerror="true" />
+ <java classname="org.apache.thrift.test.ToStringTest"
+ classpath="${cpath}:${build.test}" failonerror="true" />
+ <java classname="org.apache.thrift.test.DeepCopyTest"
+ classpath="${cpath}:${build.test}" failonerror="true" />
+ <java classname="org.apache.thrift.test.JavaBeansTest"
+ classpath="${cpath}:${build.test}" failonerror="true" />
+ </target>
+
+ <target name="generate">
+ <exec executable="../../compiler/cpp/thrift">
+ <arg line="--gen java:hashcode ${test.thrift.home}/ThriftTest.thrift" />
+ </exec>
+ <exec executable="../../compiler/cpp/thrift">
+ <arg line="--gen java:hashcode ${test.thrift.home}/DebugProtoTest.thrift" />
+ </exec>
+ <exec executable="../../compiler/cpp/thrift">
+ <arg line="--gen java:hashcode ${test.thrift.home}/OptionalRequiredTest.thrift" />
+ </exec>
+ <exec executable="../../compiler/cpp/thrift">
+ <arg line="--gen java:beans,nocamel ${test.thrift.home}/JavaBeansTest.thrift" />
+ </exec>
+ </target>
+
+
</project>
+++ /dev/null
-<project name="thrifttest" default="test" basedir=".">
-
- <description>Thrift Test Build File</description>
-
- <property name="src" location="src" />
- <property name="gen" location="gen-java" />
- <property name="genbean" location="gen-javabean" />
- <property name="build" location="build" />
- <property name="cpath" location="../../lib/java/libthrift.jar:/usr/share/java/commons-lang-2.3.jar" />
- <property name="testjar" location="thrifttest.jar" />
-
- <target name="init">
- <tstamp />
- <mkdir dir="${build}"/>
- </target>
-
- <target name="generate">
- <exec executable="../../compiler/cpp/thrift">
- <arg line="--gen java:hashcode ../ThriftTest.thrift" />
- </exec>
- <exec executable="../../compiler/cpp/thrift">
- <arg line="--gen java:hashcode ../DebugProtoTest.thrift" />
- </exec>
- <exec executable="../../compiler/cpp/thrift">
- <arg line="--gen java:hashcode ../OptionalRequiredTest.thrift" />
- </exec>
- <exec executable="../../compiler/cpp/thrift">
- <arg line="--gen java:beans,nocamel ../JavaBeansTest.thrift" />
- </exec>
- </target>
-
- <target name="compileonly">
- <javac debug="true" srcdir="${gen}" destdir="${build}" classpath="${cpath}" />
- <javac debug="true" srcdir="${genbean}" destdir="${build}" classpath="${cpath}" />
- <javac debug="true" srcdir="${src}" destdir="${build}" classpath="${cpath}:${gen}" />
- </target>
-
- <target name="compile" depends="init,generate,compileonly">
- <jar jarfile="${testjar}" basedir="${build}"/>
- </target>
-
- <target name="test" depends="compile">
- <java classname="org.apache.thrift.test.JSONProtoTest"
- classpath="${cpath}:${testjar}:${gen}" failonerror="true" />
- <java classname="org.apache.thrift.test.IdentityTest"
- classpath="${cpath}:${testjar}:${gen}" failonerror="true" />
- <java classname="org.apache.thrift.test.EqualityTest"
- classpath="${cpath}:${testjar}:${gen}" failonerror="true" />
- <java classname="org.apache.thrift.test.ToStringTest"
- classpath="${cpath}:${testjar}:${gen}" failonerror="true" />
- <java classname="org.apache.thrift.test.DeepCopyTest"
- classpath="${cpath}:${testjar}:${gen}" failonerror="true" />
- <java classname="org.apache.thrift.test.JavaBeansTest"
- classpath="${cpath}:${testjar}:${gen}" failonerror="true" />
- </target>
-
- <target name="clean">
- <delete dir="gen-java" />
- <delete dir="gen-javabean" />
- <delete dir="${build}" />
- <delete file="thrifttest.jar" />
- </target>
-
-</project>