Author: cos
Date: Wed Jul 21 20:02:04 2010
New Revision: 966394
URL: http://svn.apache.org/viewvc?rev=966394&view=rev
Log:
HDFS-1311. Running tests with 'testcase' cause triple execution of the same test case. Contributed
by Konstantin Boudnik.
Modified:
hadoop/hdfs/trunk/CHANGES.txt
hadoop/hdfs/trunk/build.xml
Modified: hadoop/hdfs/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/hadoop/hdfs/trunk/CHANGES.txt?rev=966394&r1=966393&r2=966394&view=diff
==============================================================================
--- hadoop/hdfs/trunk/CHANGES.txt (original)
+++ hadoop/hdfs/trunk/CHANGES.txt Wed Jul 21 20:02:04 2010
@@ -694,6 +694,9 @@ Release 0.21.0 - Unreleased
BUG FIXES
+ HDFS-1311. Running tests with 'testcase' cause triple execution of the
+ same test case (Cos)
+
HDFS-1299. 'compile-fault-inject' never should be called directly. (cos)
HDFS-1193. -mvn-system-deploy target is broken which inturn fails the
Modified: hadoop/hdfs/trunk/build.xml
URL: http://svn.apache.org/viewvc/hadoop/hdfs/trunk/build.xml?rev=966394&r1=966393&r2=966394&view=diff
==============================================================================
--- hadoop/hdfs/trunk/build.xml (original)
+++ hadoop/hdfs/trunk/build.xml Wed Jul 21 20:02:04 2010
@@ -632,7 +632,9 @@
exclude.list.id="commit.smoke.exclude.list.id"/>
</target>
- <target name="run-commit-test" depends="compile-hdfs-test" description="Run approximate
10-minute set of unit tests prior to commiting">
+ <target name="run-commit-test" depends="compile-hdfs-test"
+ description="Run approximate 10-minute set of unit tests prior to commiting"
+ unless="testcase">
<macro-test-runner
test.file="${test.hdfs.commit.tests.file}"
suite.type="hdfs"
@@ -642,7 +644,8 @@
</target>
<target name="run-smoke-test" depends="compile-hdfs-test"
- description="Run approximate 30-minute set of functional tests prior to guarantee HDFS
viability">
+ description="Run approximate 30-minute set of functional tests to guarantee HDFS viability"
+ unless="testcase">
<macro-test-runner
test.file="${test.hdfs.smoke.tests.file}"
suite.type="hdfs"
|