[ 
https://issues.apache.org/jira/browse/GEODE-5892?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16654232#comment-16654232
 ] 

Owen Nichols commented on GEODE-5892:
-------------------------------------

Which specific tests are failing on Java11 due to this?

 

> File's absolute path does not change after user.dir is changed in jdk11
> -----------------------------------------------------------------------
>
>                 Key: GEODE-5892
>                 URL: https://issues.apache.org/jira/browse/GEODE-5892
>             Project: Geode
>          Issue Type: Sub-task
>            Reporter: Jinmei Liao
>            Assignee: Jinmei Liao
>            Priority: Major
>
> {noformat}
> File relativeFile1 = new File("abc.txt");
> System.setProperty("user.dir", "/somewhereElse");
> File relativeFile2 = new File("abc.txt");
> System.out.println(relativeFile1.getAbsolutePath());
> System.out.println(relativeFile2.getAbsolutePath());
> {noformat}
> pre jdk11, the code above will print out "/somewhereElse/abc.txt"  in both 
> lines, even though the relativeFile objects still point to the files under 
> the old user.dir. But in jdk11, the above code will print out "old 
> user.dir/abc.txt" in both lines. 
> dynamically change user.dir would not affect the relative file's absolute 
> path anymore.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

Reply via email to