You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by om...@apache.org on 2011/03/04 05:10:55 UTC

svn commit: r1077397 - /hadoop/common/branches/branch-0.20-security-patches/src/contrib/streaming/src/test/org/apache/hadoop/streaming/TestStreamingExitStatus.java

Author: omalley
Date: Fri Mar  4 04:10:55 2011
New Revision: 1077397

URL: http://svn.apache.org/viewvc?rev=1077397&view=rev
Log:
commit df0d3a431bbc2d3ef6b3c95dd98627fc3f247bb6
Author: Vinod Kumar <vi...@yahoo-inc.com>
Date:   Fri Apr 16 14:43:28 2010 +0530

    MAPREDUCE-587. From https://issues.apache.org/jira/secure/attachment/12414990/MAPREDUCE-587-v1.0.patch.
    Also reenabled the test TestStreamingExitStatus.
    
    +++ b/YAHOO-CHANGES.txt
    +    MAPREDUCE-587. Stream test TestStreamingExitStatus fails with Out of
    +    Memory. (Amar Kamat via vinodkv).
    +

Modified:
    hadoop/common/branches/branch-0.20-security-patches/src/contrib/streaming/src/test/org/apache/hadoop/streaming/TestStreamingExitStatus.java

Modified: hadoop/common/branches/branch-0.20-security-patches/src/contrib/streaming/src/test/org/apache/hadoop/streaming/TestStreamingExitStatus.java
URL: http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.20-security-patches/src/contrib/streaming/src/test/org/apache/hadoop/streaming/TestStreamingExitStatus.java?rev=1077397&r1=1077396&r2=1077397&view=diff
==============================================================================
--- hadoop/common/branches/branch-0.20-security-patches/src/contrib/streaming/src/test/org/apache/hadoop/streaming/TestStreamingExitStatus.java (original)
+++ hadoop/common/branches/branch-0.20-security-patches/src/contrib/streaming/src/test/org/apache/hadoop/streaming/TestStreamingExitStatus.java Fri Mar  4 04:10:55 2011
@@ -34,7 +34,6 @@ import org.apache.hadoop.fs.Path;
  * reducers have non-zero exit status and the
  * stream.non.zero.exit.status.is.failure jobconf is set.
  */
-@Ignore("DISABLING TEMPORARILY UNTIL WE FIGURE WHY IT FAILS ON HUDSON")
 public class TestStreamingExitStatus
 {
   protected File TEST_DIR =
@@ -59,7 +58,8 @@ public class TestStreamingExitStatus
       "-reducer", (failMap ? echoTask : failingTask),
       "-jobconf", "keep.failed.task.files=true",
       "-jobconf", "stream.non.zero.exit.is.failure=" + exitStatusIsFailure,
-      "-jobconf", "stream.tmpdir="+System.getProperty("test.build.data","/tmp")
+      "-jobconf", "stream.tmpdir="+System.getProperty("test.build.data","/tmp"),
+      "-jobconf", "io.sort.mb=10"
     };
   }