~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/lib/test_run_options.py

  • Committer: Lee Bieber
  • Date: 2011-01-30 22:14:18 UTC
  • mfrom: (2124.2.11 dbqp_work)
  • Revision ID: kalebral@gmail.com-20110130221418-3g5gmlrllccq4eeb
Merge Patrick - fix bug 709861: dbqp not running on mac osx
Merge Patrick - fix bug 709879: dbqp needs --start-and-exit option

Show diffs side-by-side

added added

removed removed

Lines of Context:
85
85
 )
86
86
 
87
87
system_control_group.add_option(
 
88
    "--start-and-exit"
 
89
  , dest="startandexit"
 
90
  , action="store_true"
 
91
  , default=False
 
92
  , help="Spin up the server(s) for the first specified test then exit (will leave servers running)"
 
93
  )
 
94
 
 
95
system_control_group.add_option(
88
96
    "--verbose"
89
97
   , dest="verbose"
90
98
   , action="store_true"
211
219
 
212
220
 
213
221
test_subject_control_group.add_option(
214
 
    "--engine"
215
 
   , dest="engine"
 
222
    "--default-storage-engine"
 
223
   , dest="defaultengine"
216
224
   , default = 'innodb'
217
225
   , help="Start drizzled using the specified engine [%default]"
218
226
   )