You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by my...@apache.org on 2008/10/15 00:16:36 UTC

svn commit: r704718 - /db/derby/code/trunk/build.xml

Author: myrnavl
Date: Tue Oct 14 15:16:34 2008
New Revision: 704718

URL: http://svn.apache.org/viewvc?rev=704718&view=rev
Log:
DERBY-1458 - add a check to the build to ensure there are no missing/orphaned
  messages.

Modified:
    db/derby/code/trunk/build.xml

Modified: db/derby/code/trunk/build.xml
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/build.xml?rev=704718&r1=704717&r2=704718&view=diff
==============================================================================
--- db/derby/code/trunk/build.xml (original)
+++ db/derby/code/trunk/build.xml Tue Oct 14 15:16:34 2008
@@ -32,7 +32,7 @@
 <!-- Targets -->
 
   <target name="buildsource" depends="checkCompilerLevel,init,prebuild,setCompilerProperties,jsr169stubs,engine,storeless,tools,drda,client,build,versioninfo,localeinfo"/>
-  <target name="all" depends="buildsource,demo,testing,pptesting"/>
+  <target name="all" depends="buildsource,demo,testing,pptesting,runmessagechecktest"/>
 
 <!-- ==================================================================== -->
 <!--                       Initialize targets                             -->
@@ -470,6 +470,11 @@
     <ant dir="${derby.testing.src.dir}/org/apache/derby"/>
   </target>
 
+  <!-- Run the MessageBundleTest -->
+  <target name="runmessagechecktest" depends="junit-init">
+    <property name="derby.junit.testclass" value="org.apache.derbyTesting.functionTests.tests.i18n.MessageBundleTest"/>
+    <antcall target="junit-single"/>
+  </target>
 
 <!-- ==================================================================== -->
 <!--                     Build SanityState.java                           -->