Update of /cvsroot/monetdb/MonetDB/src/testing
In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv2431/MonetDB/src/testing

Modified Files:
        Mtest.py.in 
Log Message:

on request:
enabled testing via simple `Mtest.py -r` as well as `make check` (or `sh 
RunMtest`)
for datacell.
requires update of MonetDB (for MonetDB/src/testing/Mtest.py.in).

[ Who is the "s....", now? ;-) ]


Index: Mtest.py.in
===================================================================
RCS file: /cvsroot/monetdb/MonetDB/src/testing/Mtest.py.in,v
retrieving revision 1.297
retrieving revision 1.298
diff -u -d -r1.297 -r1.298
--- Mtest.py.in 5 Sep 2007 20:56:59 -0000       1.297
+++ Mtest.py.in 6 Sep 2007 10:09:38 -0000       1.298
@@ -2611,6 +2611,7 @@
     'xml':        'monetdb-xml',
     'amdb':       'monetdb-amdb',
     'geom':       'monetdb-geom',
+    'datacell':   'monetdb-datacell',
     }
 
 par = {}
@@ -2724,11 +2725,11 @@
     cmd_options = [
         # long name, short name, GDK option, argument, comment
         ('package', 'p', 'package', '<package>',
-         "package to be tested, e.g.:\nmonetdb(|4|5), 
[monetdb-](clients|template|sql|xquery|xml|amdb|geom);\ndefault: %s" % 
par['PACKAGE']),
+         "package to be tested, e.g.:\nmonetdb(|4|5), 
[monetdb-](clients|template|sql|xquery|xml|amdb|geom|datacell);\ndefault: %s" % 
par['PACKAGE']),
         ('MonetDB4', '4', 'MonetDB4', None,
-         "use Mserver of MonetDB Version 4 (default with <package> != 
monetdb5)"),
+         "use Mserver of MonetDB Version 4 (default with <package> not in 
{monetdb5, monetdb-datacell})"),
         ('MonetDB5', '5', 'MonetDB5', None,
-         "use mserver5 of MonetDB Version 5 (default with <package> == 
monetdb5)"),
+         "use mserver5 of MonetDB Version 5 (default with <package> in 
{monetdb5, monetdb-datacell})"),
         ('recursive', 'r', 'recursive', None,
          "recurse into subdirectories (implies 'All')"),
         ('MONETDB_SOURCE', None, 'MONETDB_SOURCE', '<path>',
@@ -2865,8 +2866,8 @@
     if par['M5'] and par['PACKAGE'] == 'monetdb4':
         ErrXit('"-5/--MonetDB5" conflicts with "--package=monetdb4"!')
     if not par['M4'] and not par['M5']:
-        par['M4'] = par['PACKAGE'] != 'monetdb5'
-        par['M5'] = par['PACKAGE'] == 'monetdb5'
+        par['M4'] = par['PACKAGE'] not in ['monetdb5', 'monetdb-datacell']
+        par['M5'] = par['PACKAGE']     in ['monetdb5', 'monetdb-datacell']
 
     config = opts.get('config')
     if config is None and par['PACKAGE'] not in ('monetdb', 'monetdb-clients'):


-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
Monetdb-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-checkins

Reply via email to