Hi,
maven-surefire-plugin has been upgraded to 2.9 in 0.92 and TRUNK.
The following diff would allow you to run selected tests:
Index: pom.xml
===================================================================
--- pom.xml (revision 1177364)
+++ pom.xml (working copy)
@@ -186,6 +186,7 @@
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
+ <version>2.9</version>
<configuration>
<forkedProcessTimeoutInSeconds>900</forkedProcessTimeoutInSeconds>
<argLine>-enableassertions -Xmx1400m</argLine>
For example:
tyumac:90hbase tyu$ mvn test
-Dtest=TestRollingRestart#testBasicRollingRestart
Cheers