HADOOP-9294. GetGroupsTestBase fails on Windows. Contributed by Chris Nauroth.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1444415 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d4931241ab
commit
6e72c6731a
@ -350,6 +350,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)
|
||||
|
||||
@ -357,6 +358,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 @@ private static String getExpectedOutput(UserGroupInformation user) {
|
||||
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
Block a user