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/26 10:34:01 UTC

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

Author: andyj
Date: Mon Nov 26 01:34:00 2007
New Revision: 598186

URL: http://svn.apache.org/viewvc?rev=598186&view=rev
Log:
More formatting to move comment about single test down to notes. Make sure options second line comments are aligned

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=598186&r1=598185&r2=598186&view=diff
==============================================================================
--- db/jdo/trunk/tck2/maven.xml (original)
+++ db/jdo/trunk/tck2/maven.xml Mon Nov 26 01:34:00 2007
@@ -34,9 +34,8 @@
     <!-- 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>Goals:</echo>
         <echo>  installSchema - installs the database schema</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>
@@ -44,16 +43,12 @@
         <echo>  runtck.iut - runs the TCK on the implementation under test</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>       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>       runs the TCK on the implementation under test</echo>
         <echo>  cleanClasses - deletes classes and enhanced classes</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>Options:</echo>
         <echo>  -Djdo.tck.cfglist=xxx - a list of configuration files </echo>
         <echo>       (must be in src/conf)</echo>
         <echo>  -Djdo.tck.dblist=xxx - a list of databases</echo>
@@ -63,34 +58,37 @@
         <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>       should listen for a debugger on (default 8787)</echo>
         <echo>  -Djdo.tck.debug.jvmargs=xxx - the "-Xdebug ..." arguments</echo>
-        <echo>      in the event you want to supply your own debug directives</echo>
+        <echo>       in the event you want to supply your own debug directives</echo>
         <echo></echo>
         <echo>Examples:</echo>
         <echo>  maven -Djdo.tck.identitytypes=datastoreidentity installSchema</echo>
-        <echo>      Installs the database schema for datastore identity </echo>
-        <echo>      for all supported databases</echo>
+        <echo>       Installs the database schema for datastore identity </echo>
+        <echo>       for all supported databases</echo>
         <echo></echo>
         <echo>  maven -Djdo.tck.cfglist="alltests.conf cfg1.conf" runtck.jdori</echo>
-        <echo>      Runs the "alltests.conf" and "cfg1.conf" configurations</echo>
-        <echo>      on the JDORI, 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 a</echo>
-        <echo>      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 for a debugger</echo>
-        <echo>      for a debugger to attach on port 9343</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 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>
+        <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>* 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">