Author: suresh
Date: Thu Jan 3 22:04:51 2013
New Revision: 1428631
URL: http://svn.apache.org/viewvc?rev=1428631&view=rev
Log:
HDFS-4355. TestNameNodeMetrics.testCorruptBlock fails with open JDK7.
Contributed by Brandon Li.
Modified:
hadoop/common/branches/branch-1/CHANGES.txt
hadoop/common/branches/branch-1/src/test/org/apache/hadoop/hdfs/server/namenode/metrics/TestNameNodeMetrics.java
Modified: hadoop/common/branches/branch-1/CHANGES.txt
URL:
http://svn.apache.org/viewvc/hadoop/common/branches/branch-1/CHANGES.txt?rev=1428631&r1=1428630&r2=1428631&view=diff
==============================================================================
--- hadoop/common/branches/branch-1/CHANGES.txt (original)
+++ hadoop/common/branches/branch-1/CHANGES.txt Thu Jan 3 22:04:51 2013
@@ -385,6 +385,9 @@ Release 1.2.0 - unreleased
MAPREDUCE-4909. TestKeyValueTextInputFormat fails with Open JDK 7 on
Windows. (Arpit Agarwal via suresh)
+ HDFS-4355. TestNameNodeMetrics.testCorruptBlock fails with open JDK7.
+ (Brandon Li via suresh)
+
Release 1.1.2 - Unreleased
INCOMPATIBLE CHANGES
Modified:
hadoop/common/branches/branch-1/src/test/org/apache/hadoop/hdfs/server/namenode/metrics/TestNameNodeMetrics.java
URL:
http://svn.apache.org/viewvc/hadoop/common/branches/branch-1/src/test/org/apache/hadoop/hdfs/server/namenode/metrics/TestNameNodeMetrics.java?rev=1428631&r1=1428630&r2=1428631&view=diff
==============================================================================
---
hadoop/common/branches/branch-1/src/test/org/apache/hadoop/hdfs/server/namenode/metrics/TestNameNodeMetrics.java
(original)
+++
hadoop/common/branches/branch-1/src/test/org/apache/hadoop/hdfs/server/namenode/metrics/TestNameNodeMetrics.java
Thu Jan 3 22:04:51 2013
@@ -103,7 +103,7 @@ public class TestNameNodeMetrics extends
/** Test metrics associated with addition of a file */
public void testFileAdd() throws Exception {
- // Add files with 100 blocks
+ // Add files with 32 blocks
final Path file = getTestPath("testFileAdd");
createFile(file, 3200, (short)3);
final long blockCount = 32;
@@ -148,6 +148,7 @@ public class TestNameNodeMetrics extends
/** Corrupt a block and ensure metrics reflects it */
public void testCorruptBlock() throws Exception {
+ fs.delete(new Path("/"), true);
// Create a file with single block with two replicas
final Path file = getTestPath("testCorruptBlock");
createFile(file, 100, (short)2);