HADOOP-7709. Running a set of methods in a Single Test Class. (Jonathan Eagles via mahadev)

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1182686 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Mahadev Konar 2011-10-13 06:56:37 +00:00
parent 4f5932f6da
commit 5a71f004e9
4 changed files with 6 additions and 2 deletions

View File

@ -59,7 +59,7 @@ Maven build goals:
* Use -DskipTests to skip tests when running the following Maven goals: * Use -DskipTests to skip tests when running the following Maven goals:
'package', 'install', 'deploy' or 'verify' 'package', 'install', 'deploy' or 'verify'
* -Dtest=<TESTCLASSNAME>,.... * -Dtest=<TESTCLASSNAME>,<TESTCLASSNAME#METHODNAME>,....
* -Dtest.exclude=<TESTCLASSNAME> * -Dtest.exclude=<TESTCLASSNAME>
* -Dtest.exclude.pattern=**/<TESTCLASSNAME1>.java,**/<TESTCLASSNAME2>.java * -Dtest.exclude.pattern=**/<TESTCLASSNAME1>.java,**/<TESTCLASSNAME2>.java

View File

@ -462,6 +462,9 @@ Release 0.23.0 - Unreleased
HADOOP-7642. create hadoop-dist module where TAR stitching would happen. HADOOP-7642. create hadoop-dist module where TAR stitching would happen.
(Thomas White via tucu) (Thomas White via tucu)
HADOOP-7709. Running a set of methods in a Single Test Class.
(Jonathan Eagles via mahadev)
OPTIMIZATIONS OPTIMIZATIONS
HADOOP-7333. Performance improvement in PureJavaCrc32. (Eric Caspole HADOOP-7333. Performance improvement in PureJavaCrc32. (Eric Caspole

View File

@ -338,6 +338,7 @@
TODO: from a previous run is present TODO: from a previous run is present
--> -->
<delete dir="${test.build.data}"/> <delete dir="${test.build.data}"/>
<mkdir dir="${test.build.data}"/>
<mkdir dir="${hadoop.log.dir}"/> <mkdir dir="${hadoop.log.dir}"/>
<copy toDir="${project.build.directory}/test-classes"> <copy toDir="${project.build.directory}/test-classes">

View File

@ -438,7 +438,7 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
<version>2.6</version> <version>2.9</version>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>