~ubuntu-branches/ubuntu/vivid/drizzle/vivid-proposed

« back to all changes in this revision

Viewing changes to tests/kewpie/drizzle_tests/randgen_slavePlugin/multiThread1CrashRecover_test.py

  • Committer: Package Import Robot
  • Author(s): Tobias Frost
  • Date: 2013-08-22 20:18:31 UTC
  • mto: (20.1.1 sid)
  • mto: This revision was merged to the branch mainline in revision 21.
  • Revision ID: package-import@ubuntu.com-20130822201831-gn3ozsh7o7wmc5tk
Tags: upstream-7.2.3
ImportĀ upstreamĀ versionĀ 7.2.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#! /usr/bin/env python
2
 
# -*- mode: python; indent-tabs-mode: nil; -*-
3
 
# vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
 
#
5
 
# Copyright (C) 2011 Patrick Crews
6
 
#
7
 
#
8
 
# This program is free software; you can redistribute it and/or modify
9
 
# it under the terms of the GNU General Public License as published by
10
 
# the Free Software Foundation; either version 2 of the License, or
11
 
# (at your option) any later version.
12
 
#
13
 
# This program is distributed in the hope that it will be useful,
14
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 
# GNU General Public License for more details.
17
 
#
18
 
# You should have received a copy of the GNU General Public License
19
 
# along with this program; if not, write to the Free Software
20
 
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
21
 
 
22
 
from lib.util.mysqlBaseTestCase import mysqlBaseTestCase
23
 
 
24
 
server_requirements = [['--innodb.replication-log'],['--plugin-add=slave --slave.config-file=$MASTER_SERVER_SLAVE_CONFIG']]
25
 
servers = []
26
 
server_manager = None
27
 
test_executor = None
28
 
 
29
 
class basicTest(mysqlBaseTestCase):
30
 
 
31
 
    def test_multiThread1CrashRecover(self):
32
 
        test_cmd = "./gentest.pl --gendata=conf/drizzle/translog_drizzle.zz --grammar=conf/drizzle/translog_concurrent1.yy --Reporter=DrizzleSlavePluginCrashRecover  --queries=500 --threads=3"
33
 
        retcode, output = self.execute_randgen(test_cmd, test_executor, servers[0])
34
 
        self.assertEqual(retcode, 0, msg =output)
35
 
 
36
 
    def tearDown(self):
37
 
            server_manager.reset_servers(test_executor.name)
38