Xiaoyu Yao created HADOOP-11088: ----------------------------------- Summary: TestKeyShell and TestCredShell assume UNIX path separator for JECKS key store path Key: HADOOP-11088 URL: https://issues.apache.org/jira/browse/HADOOP-11088 Project: Hadoop Common Issue Type: Test Components: security Affects Versions: 2.4.1 Reporter: Xiaoyu Yao
TestKeyShell and TestCredShell assume UNIX path separator for JECKS key store path. This will fail the tests on Windows which uses a different path separator. The fix should be something like: {code} - jceksProvider = "jceks://file" + tmpDir + "/keystore.jceks"; + final Path jksPath = new Path(tmpDir.toString(), "keystore.jceks"); + jceksProvider = "jceks://file" + jksPath.toUri(); {code} -- This message was sent by Atlassian JIRA (v6.3.4#6332)