From: Xuan B. <med...@us...> - 2007-07-21 23:17:33
|
Update of /cvsroot/tm4j/tm4j In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv25097 Modified Files: build.xml Log Message: Enable assertions when testing by default. Index: build.xml =================================================================== RCS file: /cvsroot/tm4j/tm4j/build.xml,v retrieving revision 1.136 retrieving revision 1.137 diff -C2 -d -r1.136 -r1.137 *** build.xml 18 May 2005 21:26:37 -0000 1.136 --- build.xml 21 Jul 2007 23:17:33 -0000 1.137 *************** *** 873,876 **** --- 873,879 ---- <sysproperty key="backends" value="${backends}"/> <test name="org.tm4j.topicmap.test.AllTests" outfile="testresult"/> + <assertions> + <enable/> + </assertions> </junit> </target> *************** *** 889,892 **** --- 892,898 ---- <sysproperty key="backends" value="${backends}"/> <test name="org.tm4j.topicmap.unified.test.AllTests" outfile="testresult.txt"/> + <assertions> + <enable/> + </assertions> </junit> </target> *************** *** 905,908 **** --- 911,917 ---- <sysproperty key="backends" value="${backends}"/> <test name="org.tm4j.topicmap.utils.test.AllTests" outfile="testresult"/> + <assertions> + <enable/> + </assertions> </junit> </target> *************** *** 922,925 **** --- 931,937 ---- <sysproperty key="backends" value="${backends}"/> <test name="org.tm4j.topicmap.index.test.AllIndexTests" outfile="indextestresult"/> + <assertions> + <enable/> + </assertions> </junit> </target> *************** *** 939,943 **** <sysproperty key="backends" value="${backends}"/> <test name="org.tm4j.topicmap.index.text.test.AllTests" outfile="textindextestresult"/> ! </junit> </target> --- 951,958 ---- <sysproperty key="backends" value="${backends}"/> <test name="org.tm4j.topicmap.index.text.test.AllTests" outfile="textindextestresult"/> ! <assertions> ! <enable/> ! </assertions> ! </junit> </target> *************** *** 957,960 **** --- 972,978 ---- <test name="org.tm4j.test.AllTests" outfile="testresult"/> <test name="org.tm4j.tmapi.test.AllTests" outfile="tmapitests"/> + <assertions> + <enable/> + </assertions> </junit> </target> *************** *** 990,993 **** --- 1008,1014 ---- <test name="org.tm4j.ant.test.AllTests" outfile="anttaskstestresult"/> + <assertions> + <enable/> + </assertions> </junit> </target> *************** *** 1137,1140 **** --- 1158,1164 ---- </fileset> </batchtest> + <assertions> + <enable/> + </assertions> </junit> </target> *************** *** 1357,1360 **** --- 1381,1387 ---- <arg value="-topicmap=${ozone.test.file}"/> <arg value="-tmname=topicmap"/> + <assertions> + <enable/> + </assertions> </java> </target> *************** *** 1553,1556 **** --- 1580,1586 ---- outfile="testresult"/--> <test name="org.tm4j.topicmap.hibernate.utils.DataObjectWalkerTest" outfile="testresult"/> + <assertions> + <enable/> + </assertions> </junit> </target> *************** *** 1624,1627 **** --- 1654,1660 ---- value="-Dtopicmap.provider.factory=org.tm4j.topicmap.memory.TopicMapProviderFactoryImpl"/>--> <test name="org.tm4j.tmapi.test.AllTests" outfile="testresult"/> + <assertions> + <enable/> + </assertions> </junit> </target> *************** *** 1752,1755 **** --- 1785,1791 ---- <formatter type="plain"/> <test name="org.tm4j.tolog.test.TologTestSuite" outfile="testresult"/> + <assertions> + <enable/> + </assertions> </junit> </target> *************** *** 1930,1933 **** --- 1966,1972 ---- <formatter type="plain"/> <test name="org.tm4j.xalanutils.test.AllTests" outfile="testresult"/> + <assertions> + <enable/> + </assertions> </junit> </target> *************** *** 1942,1945 **** --- 1981,1987 ---- <jvmarg value="-Dbackend=${backend}"/> <arg line="resource/scale.test.properties"/> + <assertions> + <enable/> + </assertions> </java> </target> *************** *** 2073,2076 **** --- 2115,2121 ---- </fileset> </batchtest> + <assertions> + <enable/> + </assertions> </junit> </target> |