HADOOP-9294. Merge 1444415 from trunk
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1444419 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
50eba7b82e
commit
1e96de720a
|
@ -9,6 +9,7 @@ Release 2.0.4-beta - UNRELEASED
|
|||
HADOOP-9283. Add support for running the Hadoop client on AIX. (atm)
|
||||
|
||||
IMPROVEMENTS
|
||||
|
||||
HADOOP-9253. Capture ulimit info in the logs at service start time.
|
||||
(Arpit Gupta via suresh)
|
||||
|
||||
|
@ -16,6 +17,8 @@ Release 2.0.4-beta - UNRELEASED
|
|||
|
||||
BUG FIXES
|
||||
|
||||
HADOOP-9294. GetGroupsTestBase fails on Windows. (Chris Nauroth via suresh)
|
||||
|
||||
Release 2.0.3-alpha - 2013-02-06
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -108,7 +108,7 @@ public abstract class GetGroupsTestBase {
|
|||
for (String group : user.getGroupNames()) {
|
||||
expectedOutput += " " + group;
|
||||
}
|
||||
return expectedOutput + "\n";
|
||||
return expectedOutput + System.getProperty("line.separator");
|
||||
}
|
||||
|
||||
private String runTool(Configuration conf, String[] args, boolean success)
|
||||
|
|
Loading…
Reference in New Issue