comment out test added in r76438, which caused refleaks

This commit is contained in:
Jesse Noller 2009-11-24 14:17:29 +00:00
parent bce783757f
commit 9a03f2fd03

View file

@ -1723,24 +1723,24 @@ class _TestLogging(BaseTestCase):
logger.setLevel(level=LOG_LEVEL)
class _TestLoggingProcessName(BaseTestCase):
def handle(self, record):
assert record.processName == multiprocessing.current_process().name
self.__handled = True
def test_logging(self):
handler = logging.Handler()
handler.handle = self.handle
self.__handled = False
# Bypass getLogger() and side-effects
logger = logging.getLoggerClass()(
'multiprocessing.test.TestLoggingProcessName')
logger.addHandler(handler)
logger.propagate = False
logger.warn('foo')
assert self.__handled
# class _TestLoggingProcessName(BaseTestCase):
#
# def handle(self, record):
# assert record.processName == multiprocessing.current_process().name
# self.__handled = True
#
# def test_logging(self):
# handler = logging.Handler()
# handler.handle = self.handle
# self.__handled = False
# # Bypass getLogger() and side-effects
# logger = logging.getLoggerClass()(
# 'multiprocessing.test.TestLoggingProcessName')
# logger.addHandler(handler)
# logger.propagate = False
#
# logger.warn('foo')
# assert self.__handled
#
# Test to verify handle verification, see issue 3321