Re: [Zope] Strange lockup during functional tests (sandboxed)

2005-04-23 Thread Stefan H. Holek
ZopeTestCase.app() returns a new connection which you would have to ZopeTestCase.close(app) after use. If you forget to close, you will deplete the connection pool and cause the hang you experience. Also, note that the app argument to utility methods is *optional*, and setupCoreSessions() will

[Zope] Strange lockup during functional tests (sandboxed)

2005-04-23 Thread Balazs Ree
Hi, I'm running Zope 2.7.5-1, python 2.3.5-2 and experience that during the runnig of my own functional tests (sandboxed) after a few tests the program locks up (CTRL-C does not work, CTRL-Z yes). I can reproduce the issue with the following test: --- from Testing import ZopeTestCase ZopeTestC