~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/mysql_protocol/prototest/drizzle_prototest

  • Committer: Monty Taylor
  • Date: 2010-06-20 06:07:08 UTC
  • Revision ID: mordred@inaugust.com-20100620060708-lpsyssfvo8n083c6
Added sleep call to try to avoid the spurrious socket errors on freebsd.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 
18
18
import sys
19
19
import optparse
 
20
import time
20
21
import socket
21
22
import unittest
22
23
from prototest.mysql import *
59
60
 
60
61
  def reconnect(self):
61
62
    self.tearDown()
 
63
    time.sleep(1)
62
64
    self.setUp()
63
65
 
64
66
  def testNullClientHandshake(self):