Rajesh Venkatachalam created HBASE-9146:
-------------------------------------------
Summary: TestHTablePool hangs when run as part of runMediumTests
profile
Key: HBASE-9146
URL: https://issues.apache.org/jira/browse/HBASE-9146
Project: HBase
Issue Type: Bug
Components: test
Affects Versions: 0.94.10
Reporter: Rajesh Venkatachalam
In the medium set, we found a test -'TestHTablePool.java' hanging and the build
fails reporting a timeout. Though the test passes when run separately, while
running the whole suite using the command " mvn -U clean package
-Dhadoop.profile=2.0 -Psecurity -Dsnappy -P runMediumTests", this test is
observed in a waiting state, tracking for the root region server.
It turns out be a problem with the test initialization. The class
TestHTablePool contains a class TestHTablePoolType which uses nested static
test classes. But the initialization is being done for the outer class -
TestHTablePool using @BeforeClass annotation. Surefire reruns the tests
written in nested manner (for some reasons), and when this test is instantiated
the second time, the method setUpBeforeClass() is not being called and hence
the initialization is not done.
Guess that surefire tries to run
TestHTablePool.TestHTableReusablePool.class directly. (Tried this by
writing a separate program using
JUnitCore.runClasses(TTestHTablePool.TestHTableReusablePool.class) and
observed that the parent class's @BeforeClass method is not called.)
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira