]
William Burns reassigned ISPN-4548:
-----------------------------------
Assignee: William Burns (was: Dan Berindei)
Revamp AbstractInfinispanTest thread handling to use pooling
------------------------------------------------------------
Key: ISPN-4548
URL:
https://issues.jboss.org/browse/ISPN-4548
Project: Infinispan
Issue Type: Enhancement
Security Level: Public(Everyone can see)
Components: Test Suite - Core
Affects Versions: 7.0.0.Alpha5
Reporter: William Burns
Assignee: William Burns
Our base AbstractInfinispanTest class forks a new thread every time fork is called. It
would provide better performance and memory usage if instead we used a pool for threads
spawned in this way in the same the test.
Also we have support for running tests concurrently which currently don't work
properly due to the usage of CountDownLatch which isn't quite sufficient for what it
was trying to achieve. The usage of a CyclicBarrier would be more appropriate.