~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/dbqp.py

  • Committer: Mark Atwood
  • Date: 2011-10-11 22:37:47 UTC
  • mfrom: (2429.2.1 dbqp_revamp)
  • Revision ID: me@mark.atwood.name-20111011223747-vomebzgvnxxysqrm
mergeĀ lp:~patrick-crews/drizzle/dbqp_revamp

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
DataBase Quality Platform - system for executing various
25
25
testing systems and the helper code 
26
26
 
27
 
Currently only executing drizzle-test-run tests
28
 
But we can compose various combinations of servers, system,
29
 
and test definitions to produce various results
 
27
Designed to be a modular test-runner.  Different testing tools
 
28
and databases may be plugged into the system via hacking the
 
29
appropriate modules
30
30
 
 
31
Currently geared towards Drizzle / will expand to MySQL
31
32
"""
32
33
 
33
34
# imports
34
35
import os
35
36
import sys
36
 
import lib.test_run_options as test_run_options
37
 
from lib.test_mode import handle_mode
 
37
 
 
38
import lib.dbqp_opts.test_run_options as test_run_options
 
39
from lib.dbqp_modes.test_mode import handle_mode
38
40
from lib.server_mgmt.server_management import serverManager
39
41
from lib.sys_mgmt.system_management import systemManager
40
42
from lib.test_mgmt.execution_management import executionManager