tests: ensure OpenSSL is initialized prior to test.

pull/178/head
David Wilson 6 years ago
parent e28e627f55
commit fccca54068

@ -47,6 +47,8 @@ class ForkTest(testlib.RouterMixin, unittest2.TestCase):
self.assertNotEqual(context.call(random_random), random_random())
def test_ssl_module_diverges(self):
# Ensure generator state is initialized.
RAND_pseudo_bytes()
context = self.router.fork()
self.assertNotEqual(context.call(RAND_pseudo_bytes),
RAND_pseudo_bytes())

Loading…
Cancel
Save