MAPREDUCE-4969. Merge change 1441069 from trunk

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1441070 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Suresh Srinivas 2013-01-31 17:17:21 +00:00
parent 3b1002517d
commit a83b272a36
2 changed files with 56 additions and 31 deletions

View File

@ -130,6 +130,9 @@ Release 2.0.3-alpha - Unreleased
MAPREDUCE-2264. Job status exceeds 100% in some cases. MAPREDUCE-2264. Job status exceeds 100% in some cases.
(devaraj.k and sandyr via tucu) (devaraj.k and sandyr via tucu)
MAPREDUCE-4969. TestKeyValueTextInputFormat test fails with Open JDK 7.
(Arpit Agarwal via suresh)
Release 2.0.2-alpha - 2012-09-07 Release 2.0.2-alpha - 2012-09-07
INCOMPATIBLE CHANGES INCOMPATIBLE CHANGES

View File

@ -136,7 +136,10 @@ public class TestKeyValueTextInputFormat extends TestCase {
} }
public void testUTF8() throws Exception { public void testUTF8() throws Exception {
LineReader in = makeStream("abcd\u20acbdcd\u20ac"); LineReader in = null;
try {
in = makeStream("abcd\u20acbdcd\u20ac");
Text line = new Text(); Text line = new Text();
in.readLine(line); in.readLine(line);
assertEquals("readLine changed utf8 characters", assertEquals("readLine changed utf8 characters",
@ -144,10 +147,17 @@ public class TestKeyValueTextInputFormat extends TestCase {
in = makeStream("abc\u200axyz"); in = makeStream("abc\u200axyz");
in.readLine(line); in.readLine(line);
assertEquals("split on fake newline", "abc\u200axyz", line.toString()); assertEquals("split on fake newline", "abc\u200axyz", line.toString());
} finally {
if (in != null) {
in.close();
}
}
} }
public void testNewLines() throws Exception { public void testNewLines() throws Exception {
LineReader in = makeStream("a\nbb\n\nccc\rdddd\r\neeeee"); LineReader in = null;
try {
in = makeStream("a\nbb\n\nccc\rdddd\r\neeeee");
Text out = new Text(); Text out = new Text();
in.readLine(out); in.readLine(out);
assertEquals("line1 length", 1, out.getLength()); assertEquals("line1 length", 1, out.getLength());
@ -162,6 +172,11 @@ public class TestKeyValueTextInputFormat extends TestCase {
in.readLine(out); in.readLine(out);
assertEquals("line5 length", 5, out.getLength()); assertEquals("line5 length", 5, out.getLength());
assertEquals("end of file", 0, in.readLine(out)); assertEquals("end of file", 0, in.readLine(out));
} finally {
if (in != null) {
in.close();
}
}
} }
private static void writeFile(FileSystem fs, Path name, private static void writeFile(FileSystem fs, Path name,
@ -183,13 +198,20 @@ public class TestKeyValueTextInputFormat extends TestCase {
InputSplit split, InputSplit split,
JobConf job) throws IOException { JobConf job) throws IOException {
List<Text> result = new ArrayList<Text>(); List<Text> result = new ArrayList<Text>();
RecordReader<Text, Text> reader = format.getRecordReader(split, job, RecordReader<Text, Text> reader = null;
voidReporter);
try {
reader = format.getRecordReader(split, job, voidReporter);
Text key = reader.createKey(); Text key = reader.createKey();
Text value = reader.createValue(); Text value = reader.createValue();
while (reader.next(key, value)) { while (reader.next(key, value)) {
result.add(value); result.add(value);
value = reader.createValue(); value = (Text) reader.createValue();
}
} finally {
if (reader != null) {
reader.close();
}
} }
return result; return result;
} }