[Javaclient-cvs] javaclient build.xml,1.4,1.5
Status: Alpha
Brought to you by:
rimmeraj
|
From: Dave S. <rim...@us...> - 2004-10-08 03:15:01
|
Update of /cvsroot/javaclient/javaclient In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11774 Modified Files: build.xml Log Message: Added tests for basic model handling and list handling. Now we need to handle the callbacks and updates from the List Index: build.xml =================================================================== RCS file: /cvsroot/javaclient/javaclient/build.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** build.xml 7 Oct 2004 15:23:18 -0000 1.4 --- build.xml 8 Oct 2004 03:14:45 -0000 1.5 *************** *** 32,35 **** --- 32,36 ---- <include name="net/sourceforge/javaclient/client/**"/> <include name="net/sourceforge/javaclient/model/**"/> + <include name="net/sf/javaclient/model/**"/> </javac> </target> *************** *** 83,87 **** </target> ! <target name="test-proxy" depends="test-proxy-compile"> <junit printsummary="yes" haltonfailure="no" haltonerror="no" fork="yes"> <classpath> --- 84,94 ---- </target> ! <target name="test-model" depends="test-model-compile"> ! <condition property="testmodel" value="tests.model.ModelSuite"> ! <not> ! <isset property="testmodel"/> ! </not> ! </condition> ! <junit printsummary="yes" haltonfailure="no" haltonerror="no" fork="yes"> <classpath> *************** *** 92,96 **** <formatter type="plain" usefile="false"/> ! <test name="test.javaclient.client.proxy.TestModelProxy" outfile="result-proxy"> <formatter type="xml"/> </test> --- 99,103 ---- <formatter type="plain" usefile="false"/> ! <test name="${testmodel}" outfile="result-model"> <formatter type="xml"/> </test> *************** *** 99,107 **** </target> ! <target name="test-proxy-compile" depends="init"> <javac srcdir="${basedir}" destdir="${build.test}" classpath="${build.client}:${junit.jar}"> ! <include name="test/javaclient/client/proxy/**"/> </javac> </target> --- 106,114 ---- </target> ! <target name="test-model-compile" depends="client-compile"> <javac srcdir="${basedir}" destdir="${build.test}" classpath="${build.client}:${junit.jar}"> ! <include name="tests/model/**"/> </javac> </target> |