This commit is contained in:
Richard Oudkerk 2013-07-19 22:54:37 +01:00
commit e410f267f1
1 changed files with 7 additions and 4 deletions

View File

@ -3590,14 +3590,17 @@ def setUpModule():
try:
lock = multiprocessing.RLock()
except OSError:
raise unittest.SkipTest("OSError raises on RLock creation, see issue 3111!")
raise unittest.SkipTest("OSError raises on RLock creation, "
"see issue 3111!")
check_enough_semaphores()
util.get_temp_dir() # creates temp directory for use by all processes
multiprocessing.get_logger().setLevel(LOG_LEVEL)
def tearDownModule():
# pause a bit so we don't get warning about dangling threads/processes
time.sleep(0.5)
if __name__ == '__main__':
unittest.main()