RFR: 8194154: JDK crashes parsing path string contains '//' on linux

Brian Burkhalter brian.burkhalter at oracle.com
Wed Feb 14 19:17:03 UTC 2018


Hello,

In the test you have
/* @test requires (os.family == "linux") | (os.family == "mac") | (os.family == "solaris") | (os.family == "aix")
   @bug 8194154
   @summary Test parsing path with double slashes on unix like platforms.
 */
but I think you need to have the @requires annotation on a separate line for example as:
/* @test
 * @requires (os.family == "linux") | (os.family == "mac”)
 *         | (os.family == "solaris") | (os.family == "aix")
 * @bug 8194154
 * @summary Test parsing path with double slashes on unix like platforms.
 */
Thanks,

Brian

On Feb 14, 2018, at 10:48 AM, yumin qi <yumin.qi at gmail.com> wrote:

>  Thanks. Updated on same link
>   http://cr.openjdk.java.net/~minqi/8194154/webrev1/
>  as your recommendation.



More information about the core-libs-dev mailing list