HADOOP-9500. TestUserGroupInformation#testGetServerSideGroups fails on Windows due to failure to find winutils.exe. Contributed by Chris Nauroth.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1476606 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f55fd818e0
commit
f5ef2db500
|
@ -522,6 +522,9 @@ Trunk (Unreleased)
|
||||||
|
|
||||||
HADOOP-9290. Some tests cannot load native library on windows.
|
HADOOP-9290. Some tests cannot load native library on windows.
|
||||||
(Chris Nauroth via suresh)
|
(Chris Nauroth via suresh)
|
||||||
|
|
||||||
|
HADOOP-9500. TestUserGroupInformation#testGetServerSideGroups fails on
|
||||||
|
Windows due to failure to find winutils.exe. (Chris Nauroth via suresh)
|
||||||
|
|
||||||
Release 2.0.5-beta - UNRELEASED
|
Release 2.0.5-beta - UNRELEASED
|
||||||
|
|
||||||
|
|
|
@ -76,7 +76,9 @@ public class TestUserGroupInformation {
|
||||||
javax.security.auth.login.Configuration.setConfiguration(
|
javax.security.auth.login.Configuration.setConfiguration(
|
||||||
new DummyLoginConfiguration());
|
new DummyLoginConfiguration());
|
||||||
// doesn't matter what it is, but getGroups needs it set...
|
// doesn't matter what it is, but getGroups needs it set...
|
||||||
System.setProperty("hadoop.home.dir", "/tmp");
|
// use HADOOP_HOME environment variable to prevent interfering with logic
|
||||||
|
// that finds winutils.exe
|
||||||
|
System.setProperty("hadoop.home.dir", System.getenv("HADOOP_HOME"));
|
||||||
// fake the realm is kerberos is enabled
|
// fake the realm is kerberos is enabled
|
||||||
System.setProperty("java.security.krb5.kdc", "");
|
System.setProperty("java.security.krb5.kdc", "");
|
||||||
System.setProperty("java.security.krb5.realm", "DEFAULT.REALM");
|
System.setProperty("java.security.krb5.realm", "DEFAULT.REALM");
|
||||||
|
|
Loading…
Reference in New Issue