Re: RFR: 8281305: Test com/sun/net/httpserver/simpleserver/MapToPathTest.java fails on Windows 11 [v2]

2022-02-16 Thread Daniel Fuchs
On Wed, 16 Feb 2022 09:05:46 GMT, Julia Boes wrote: >> This change adds a check for URI path segments that look like a root drive >> on Windows, e.g. "C:". Such path segments are not supported because a >> request path should really be relative to the working directory. >> >> The check is impl

Re: RFR: 8281305: Test com/sun/net/httpserver/simpleserver/MapToPathTest.java fails on Windows 11 [v2]

2022-02-16 Thread Julia Boes
> This change adds a check for URI path segments that look like a root drive on > Windows, e.g. "C:". Such path segments are not supported because a request > path should really be relative to the working directory. > > The check is implemented with a platform-specific helper class, some > addi