Changeset: 176ae2b45904 for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=176ae2b45904 Modified Files: testing/Mtest.py.in Branch: default Log Message:
Mtest: avoid running "mserver5 None --debug..." Since the default config file is gone these days, it can happen that no config is there, which in Python is 'None'. Convert it to an empty string so testing can succeed. http://monetdb.cwi.nl/testing/projects/monetdb/CurrentNew/logs/39190:943c8c62727a/GNU-Darwin-i386/mtest-geom diffs (12 lines): diff --git a/testing/Mtest.py.in b/testing/Mtest.py.in --- a/testing/Mtest.py.in +++ b/testing/Mtest.py.in @@ -3047,6 +3047,8 @@ config = opts.get('config') if config: config = ' "--config=%s"' % config + else: + config = '' par['ALGEBRA'] = opts.get('algebra', 0) par['NOALGEBRA'] = opts.get('no-algebra', 0) _______________________________________________ Checkin-list mailing list [email protected] http://mail.monetdb.org/mailman/listinfo/checkin-list
