Author: schen
Date: Thu Jan 27 20:16:02 2011
New Revision: 1064287
URL: http://svn.apache.org/viewvc?rev=1064287&view=rev
Log:
MAPREDUCE-2283. Add timeout for Raid Tests (Ramkumar Vadali via schen)
Modified:
hadoop/mapreduce/trunk/CHANGES.txt
hadoop/mapreduce/trunk/src/contrib/raid/build.xml
Modified: hadoop/mapreduce/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/hadoop/mapreduce/trunk/CHANGES.txt?rev=1064287&r1=1064286&r2=1064287&view=diff
==============================================================================
--- hadoop/mapreduce/trunk/CHANGES.txt (original)
+++ hadoop/mapreduce/trunk/CHANGES.txt Thu Jan 27 20:16:02 2011
@@ -48,6 +48,8 @@ Trunk (unreleased changes)
MAPREDUCE-2271. Fix TestSetupTaskScheduling failure on trunk.
(Liyin Liang via todd)
+ MAPREDUCE-2283. Add timeout for Raid Tests (Ramkumar Vadali via schen)
+
Release 0.22.0 - Unreleased
INCOMPATIBLE CHANGES
Modified: hadoop/mapreduce/trunk/src/contrib/raid/build.xml
URL: http://svn.apache.org/viewvc/hadoop/mapreduce/trunk/src/contrib/raid/build.xml?rev=1064287&r1=1064286&r2=1064287&view=diff
==============================================================================
--- hadoop/mapreduce/trunk/src/contrib/raid/build.xml (original)
+++ hadoop/mapreduce/trunk/src/contrib/raid/build.xml Thu Jan 27 20:16:02 2011
@@ -35,7 +35,7 @@ to call at top-level: ant deploy-contrib
<target name="test-junit" depends="compile,compile-test" if="test.available">
<junit showoutput="${test.output}" fork="yes" printsummary="yes" errorProperty="tests.failed"
- haltonfailure="no" failureProperty="tests.failed">
+ haltonfailure="no" failureProperty="tests.failed" timeout="${test.timeout}">
<classpath refid="test.classpath"/>
<sysproperty key="test.build.data" value="${build.test}/data"/>
|