]> granicus.if.org Git - python/commitdiff
Merged revisions 66028 via svnmerge from
authorNeal Norwitz <nnorwitz@gmail.com>
Mon, 25 Aug 2008 03:55:03 +0000 (03:55 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Mon, 25 Aug 2008 03:55:03 +0000 (03:55 +0000)
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r66028 | neal.norwitz | 2008-08-24 20:52:40 -0700 (Sun, 24 Aug 2008) | 1 line

  Try to reduce the flakiness of this test
........

Lib/test/test_smtplib.py

index 6a94658a70a6e6c8797361de7327f435d67a7f52..55e30a8082866f6d66e4f0ce5ac38a74a24e8435 100644 (file)
@@ -220,6 +220,10 @@ class DebuggingServerTests(TestCase):
         m = 'A test message'
         smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=3)
         smtp.sendmail('John', 'Sally', m)
+        # XXX(nnorwitz): this test is flaky and dies with a bad file descriptor
+        # in asyncore.  This sleep might help, but should really be fixed
+        # properly by using an Event variable.
+        time.sleep(0.01)
         smtp.quit()
 
         self.client_evt.set()