Jazarine Jamal wrote:
I made a code change and then when i run the junit test:
org.apache.derbyTesting.functionTests.suites.All
some 5 tests get passed and then some E occurs and then the test never
gets further. No error message comes out too...
This is the same state for 12 hours..
What could be the reason.?
I wouldn't be surprised if it is related to OutOfMemory problems. Try
increasing the heap size for the jvm. With Suns jvms its these options:
-Xms<size> set initial Java heap size
-Xmx<size> set maximum Java heap size
Vemund