~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/lib/test_run_options.py

  • Committer: Monty Taylor
  • Date: 2011-02-13 17:26:39 UTC
  • mfrom: (2157.2.2 give-in-to-pkg-config)
  • mto: This revision was merged to the branch mainline in revision 2166.
  • Revision ID: mordred@inaugust.com-20110213172639-nhy7i72sfhoq13ms
Merged in pkg-config fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#! /usr/bin/env python
2
 
# -*- mode: python; indent-tabs-mode: nil; -*-
 
2
# -*- mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*-
3
3
# vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
4
#
5
5
# Copyright (C) 2010 Patrick Crews
51
51
    variables = {}
52
52
    variables = vars(args)
53
53
    variables['test_cases']= test_cases
54
 
    # This code should become a function once
55
 
    # enough thought has been given to it
56
54
    if variables['manualgdb']:
57
55
        variables['gdb']=True
58
 
    if variables['repeat'] <= 0:
59
 
        print "Setting --repeat=1.  You chose a silly value that I will ignore :P"
60
 
        variables['repeat'] = 1
61
 
    if variables['mode'] == 'randgen':
62
 
        print "Setting --no-secure-file-priv=True for randgen mode..."
63
 
        variables['nosecurefilepriv']=True
64
 
    if variables['mode'] == 'cleanup':
65
 
        print "Setting --start-dirty=True for cleanup mode..."
66
 
        variables['startdirty']=True
67
56
    return variables
68
57
 
69
58
# Create the CLI option parser
76
65
server_default = os.path.abspath(os.path.join(testdir_default,
77
66
                                       '../drizzled/drizzled'))
78
67
 
79
 
workdir_default = os.path.join(testdir_default,'workdir')
 
68
workdir_default = os.path.join(testdir_default,'dbqp_work')
80
69
 
81
70
clientbindir_default = os.path.abspath(os.path.join(testdir_default,
82
71
                                       '../client'))
125
114
    "--mode"
126
115
  , dest="mode"
127
116
  , default="dtr"
128
 
  , help="Testing mode.  We currently support dtr, randgen, and cleanup modes.  See docs for further details about individual modes [%default]"
 
117
  , help="Testing mode.  We only support dtr...for now >;) [%default]"
129
118
  )
130
119
 
131
120
system_control_group.add_option(
144
133
  , help="Don't try to cleanup from earlier runs (currently just a placeholder) [%default]"
145
134
  )
146
135
 
147
 
system_control_group.add_option(
148
 
    "--randgen-path"
149
 
  , dest="randgenpath"
150
 
  , action='store'
151
 
  , default=None
152
 
  , help = "The path to a randgen installation that can be used to execute randgen-based tests"
153
 
  )
154
 
 
155
136
parser.add_option_group(system_control_group)
156
137
 
157
138
# end system_control_group
203
184
  , help = "sort the testcases so that they are executed optimally for the given mode [%default]"
204
185
  )
205
186
 
206
 
test_control_group.add_option(
207
 
    "--repeat"
208
 
  , dest="repeat"
209
 
  , type='int'
210
 
  , action="store"
211
 
  , default=1
212
 
  , help = "Run each test case the specified number of times.  For a given sequence, the first test will be run n times, then the second, etc [%default]"
213
 
  )
 
187
 
214
188
 
215
189
parser.add_option_group(test_control_group)
216
190
# end test_control_group
380
354
parser.add_option_group(debugger_control_group)
381
355
 
382
356
 
383
 
utility_group = optparse.OptionGroup(parser,
384
 
                  "Options to call additional utilities such as datagen")
385
 
 
386
 
utility_group.add_option(
387
 
    "--gendata"
388
 
  , dest="gendatafile"
389
 
  , action='store'
390
 
  , type='string'
391
 
  , default=None
392
 
  , help="Call the randgen's gendata utility to use the specified configuration file.  This will populate the server prior to any test execution")
393
 
 
394
 
parser.add_option_group(utility_group)
395
 
 
396
 
 
397
357
# supplied will be those arguments matching an option, 
398
358
# and test_cases will be everything else
399
359
(args, test_cases)= parser.parse_args()