mirror of
https://github.com/valitydev/thrift.git
synced 2024-11-07 18:58:51 +00:00
25be92bf0d
- Generate an isSet method for each field to test its set-ness. - Generate a generic isSet method that checks by field id. git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@731722 13f79535-47bb-0310-9956-ffa450edef68
65 lines
2.5 KiB
XML
65 lines
2.5 KiB
XML
<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="com.facebook.thrift.test.JSONProtoTest"
|
|
classpath="${cpath}:${testjar}:${gen}" failonerror="true" />
|
|
<java classname="com.facebook.thrift.test.IdentityTest"
|
|
classpath="${cpath}:${testjar}:${gen}" failonerror="true" />
|
|
<java classname="com.facebook.thrift.test.EqualityTest"
|
|
classpath="${cpath}:${testjar}:${gen}" failonerror="true" />
|
|
<java classname="com.facebook.thrift.test.ToStringTest"
|
|
classpath="${cpath}:${testjar}:${gen}" failonerror="true" />
|
|
<java classname="com.facebook.thrift.test.DeepCopyTest"
|
|
classpath="${cpath}:${testjar}:${gen}" failonerror="true" />
|
|
<java classname="com.facebook.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>
|