~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

Viewing changes to tests/dbqp.py

  • Committer: Package Import Robot
  • Author(s): Clint Byrum
  • Date: 2012-06-19 10:46:49 UTC
  • mfrom: (1.1.6)
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20120619104649-e2l0ggd4oz3um0f4
Tags: upstream-7.1.36-stable
ImportĀ upstreamĀ versionĀ 7.1.36-stable

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#! /usr/bin/env python
2
 
# -*- mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*-
 
2
# -*- mode: python; indent-tabs-mode: nil; -*-
3
3
# vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
4
#
5
5
# Copyright (C) 2010 Patrick Crews
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