You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jdo-commits@db.apache.org by an...@apache.org on 2007/11/19 19:43:38 UTC

svn commit: r596394 - /db/jdo/trunk/tck2/maven.xml

Author: andyj
Date: Mon Nov 19 10:43:36 2007
New Revision: 596394

URL: http://svn.apache.org/viewvc?rev=596394&view=rev
Log:
Keep within bounds of 80 char width, yet cut numbers of lines down so close to fitting on one screen.

Modified:
    db/jdo/trunk/tck2/maven.xml

Modified: db/jdo/trunk/tck2/maven.xml
URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck2/maven.xml?rev=596394&r1=596393&r2=596394&view=diff
==============================================================================
--- db/jdo/trunk/tck2/maven.xml (original)
+++ db/jdo/trunk/tck2/maven.xml Mon Nov 19 10:43:36 2007
@@ -31,33 +31,27 @@
         <attainGoal name="jar:install"/>
     </goal>
 
+    <!-- Note : keep this so that it is max 80 char width when run 
+         so we allow for the worst case scenario of a basic VT -->
     <goal name="help">
         <echo>Custom goals for this project are:</echo>
         <echo>  installSchema - installs the database schema</echo>
         <echo></echo>
-        <echo>  enhance.iut - enhances persistence capable classes</echo>
-        <echo>       with the implementation under test enhancer</echo>
-        <echo>       if enhancement is not up to date</echo>
-        <echo>  enhance.jdori - enhances persistence capable classes</echo>
-        <echo>       with the JDO Reference Implementation enhancer </echo>
-        <echo>       if enhancement is not up to date</echo>
-        <echo></echo>
+        <echo>  enhance.iut - enhances PC classes with the implementation</echo>
+        <echo>       under test enhancer if enhancement is not up to date</echo>
+        <echo>  enhance.jdori - enhances PC classes with the JDO RI</echo>
+        <echo>       enhancer if enhancement is not up to date</echo>
         <echo>  runtck.iut - runs the TCK on the implementation under test</echo>
-        <echo>  runtck.jdori - runs the TCK on the JDO Reference Implementation</echo>
-        <echo></echo>
-        <echo>  debugtck.jdori - waits for a debugger to attach </echo>
-        <echo>      and then runs the TCK on the JDO RI</echo>
-        <echo>  debugtck.iut - waits for a debugger to attach</echo>
-        <echo>      and then runs the TCK on the implementation under test</echo>
-        <echo></echo>
+        <echo>  runtck.jdori - runs the TCK on the JDO RI</echo>
+        <echo>  debugtck.jdori - waits for a debugger to attach and then</echo>
+        <echo>      runs the TCK on the JDO RI</echo>
+        <echo>  debugtck.iut - waits for a debugger to attach and then</echo>
+        <echo>      runs the TCK on the implementation under test</echo>
         <echo>  cleanClasses - deletes classes and enhanced classes</echo>
         <echo></echo>
-        <echo></echo>
-        <echo>To run a single test, create a .conf file</echo>
-        <echo>    (copy an existing file) and edit the </echo>
-        <echo>    jdo.tck.classes property to include </echo>
-        <echo>    the name of the test class.  </echo>
-        <echo></echo>
+        <echo>To run a single test, create a .conf file (copy an existing file)</echo>
+        <echo>    and edit the "jdo.tck.classes property" to include the name</echo>
+        <echo>    of the test class.  </echo>
         <echo></echo>
         <echo>Options for this project are:</echo>
         <echo>  -Djdo.tck.cfglist=xxx - a list of configuration files </echo>
@@ -65,10 +59,9 @@
         <echo>  -Djdo.tck.dblist=xxx - a list of databases</echo>
         <echo>  -Djdo.tck.identitytypes=xxx - a list of identity types </echo>
         <echo>       (applicationidentity, datastoreidentity)</echo>
-        <echo>  -Djdo.tck.cleanupaftertest=xxx - true/false. </echo>
-        <echo>       Setting it to false will retain data in database </echo>
-        <echo>       after test. This will allow inspection of data after</echo>
-        <echo>       test is run. Default is true</echo>
+        <echo>  -Djdo.tck.cleanupaftertest=xxx - true/false (default=true). </echo>
+        <echo>       "false" will retain data in database after the test.</echo>
+        <echo>       This will allow inspection of data after test is run.</echo>
         <echo>  -Djdo.tck.debug.port=##### - the port number the JVM </echo>
         <echo>      should listen for a debugger on (default 8787)</echo>
         <echo>  -Djdo.tck.debug.jvmargs=xxx - the "-Xdebug ..." arguments</echo>
@@ -80,26 +73,24 @@
         <echo>      for all supported databases</echo>
         <echo></echo>
         <echo>  maven -Djdo.tck.cfglist="alltests.conf cfg1.conf" runtck.jdori</echo>
-        <echo>      Runs the test configurations specified in</echo>
-        <echo>      alltests.conf and cfg1.conf on the JDORI, </echo>
-        <echo>      using all supported identity types and databases. </echo>
+        <echo>      Runs the "alltests.conf" and "cfg1.conf" configurations</echo>
+        <echo>      on the JDORI, using all supported identity types and databases</echo>
         <echo></echo>
         <echo>  maven -Djdo.tck.cfglist=detach.conf debugtck.jdori</echo>
-        <echo>      Runs the test detach.conf configuration, waiting for </echo>
-        <echo>      a debugger to attach on the default port</echo>
+        <echo>      Runs the test "detach.conf" configuration, waiting for a</echo>
+        <echo>      debugger to attach on the default port</echo>
         <echo></echo>
         <echo>  maven -Djdo.tck.cfglist=detach.conf -Djdo.tck.debug.port=9343 debugtck.jdori</echo>
-        <echo>      Runs the test detach.conf configuration, waiting</echo>
+        <echo>      Runs the test detach.conf configuration, waiting for a debugger</echo>
         <echo>      for a debugger to attach on port 9343</echo>
         <echo></echo>
         <echo>Note:</echo>
-        <echo>  By default, the database schema is NOT installed</echo>
-        <echo>      when the custom goals </echo>
-        <echo>      runtck.iut and runtck.jdori are run.</echo>
-        <echo>  maven build installs the database schema and runs</echo>
-        <echo>      the TCK on the JDO Reference Implementation.</echo>
-        <echo>  Enhancement is always done before running the TCK </echo>
-        <echo>      when the enhanced classes are not up to date.</echo>
+        <echo>  By default, the database schema is NOT installed when the custom</echo>
+        <echo>      goals "runtck.iut" and "runtck.jdori" are run.</echo>
+        <echo>  "maven build" installs the database schema and runs the TCK on the</echo>
+        <echo>      JDO RI.</echo>
+        <echo>  Enhancement is always done before running the TCK when the enhanced</echo>
+        <echo>      classes are not up to date.</echo>
     </goal>
 
     <goal name="build">