HBASE-2594 Narrow pattern used finding unit tests to run -- make it same was we had in 0.20

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@947182 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2010-05-21 21:35:30 +00:00
parent 1edb36c6b6
commit 851b6a9cfc
2 changed files with 5 additions and 1 deletions

View File

@ -628,6 +628,8 @@ Release 0.21.0 - Unreleased
HBASE-2587 Coral where tests write data when running and make sure clean
target removes all written
HBASE-2580 Make the hlog file names unique
HBASE-2594 Narrow pattern used finding unit tests to run -- make it same
was we had in 0.20
NEW FEATURES
HBASE-1961 HBase EC2 scripts

View File

@ -323,8 +323,10 @@
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<forkMode>always</forkMode>
<includes>
<include>**/Test*.java</include>
</includes>
<excludes>
<exclude>**/SoftValueSortedMapTest.java</exclude>
<exclude>**/*$*</exclude>
</excludes>
</configuration>