~sharan-monikantan/drizzle/crashme

« back to all changes in this revision

Viewing changes to tests/lib/opts/test_run_options.py

  • Committer: M.Sharan Kumar
  • Date: 2012-08-07 05:23:43 UTC
  • mfrom: (2566.2.15 sysbench-readwrite)
  • Revision ID: sharan.monikantan@gmail.com-20120807052343-0v2c5k7l8ubxbytr
crash me initial branch
added:
  tests/lib/util/database_connect.py
  tests/lib/util/mailing_report.py
  tests/lib/util/sysbench_report.py
  tests/qp_tests/sysbench/sysbench_readwrite_test.py
modified:
  tests/lib/modes/native/native_test_execution.py
  tests/lib/opts/test_run_options.py
  tests/lib/server_mgmt/drizzled.py
  tests/lib/sys_mgmt/system_management.py
  tests/qp_tests/crashme/crashme_test.py
  tests/qp_tests/sysbench/sysbench_readonly_test.py

Show diffs side-by-side

added added

removed removed

Lines of Context:
276
276
      , 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]"
277
277
      )
278
278
 
 
279
 
 
280
    test_control_group.add_option(
 
281
        "--email-report-tgt"
 
282
      , dest="emailreporttgt"
 
283
      , action="store"
 
284
      , type='string'
 
285
      , default=None
 
286
      , help="Used to send report mails. sends the test report to the email ID given"
 
287
      )
 
288
 
279
289
    parser.add_option_group(test_control_group)
280
290
 
281
291
    # test subject control group
469
479
        , help = "File path where subunit output will be logged [%default]"
470
480
        )
471
481
 
 
482
    environment_control_group.add_option(
 
483
          "--results-db-dsn"
 
484
        , dest="resultsdbdsn"
 
485
        , action='store'
 
486
        , default="127.0.0.1:root::results_db:3306"
 
487
        , help = "Specifies the database connection\nDefault string:'127.0.0.1:root::results_db:3306'"
 
488
        )
 
489
 
472
490
    parser.add_option_group(environment_control_group)
473
491
    # end environment control group
474
492