test/jdk/java/awt/geom/CubicCurve2D/ContainsHang.java
changeset 50344 8039dc75f125
equal deleted inserted replaced
50343:80a5ff734fcd 50344:8039dc75f125
       
     1 /*
       
     2  * Copyright (c) 1999, 2018, Oracle and/or its affiliates. All rights reserved.
       
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
       
     4  *
       
     5  * This code is free software; you can redistribute it and/or modify it
       
     6  * under the terms of the GNU General Public License version 2 only, as
       
     7  * published by the Free Software Foundation.
       
     8  *
       
     9  * This code is distributed in the hope that it will be useful, but WITHOUT
       
    10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
       
    11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
       
    12  * version 2 for more details (a copy is included in the LICENSE file that
       
    13  * accompanied this code).
       
    14  *
       
    15  * You should have received a copy of the GNU General Public License version
       
    16  * 2 along with this work; if not, write to the Free Software Foundation,
       
    17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
       
    18  *
       
    19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
       
    20  * or visit www.oracle.com if you need additional information or have any
       
    21  * questions.
       
    22  */
       
    23 
       
    24 /*
       
    25  * @test
       
    26  * @bug 4246661
       
    27  * @summary Verifies that the CubicCurve2D.contains method does not hang
       
    28  * @run main/timeout=5 ContainsHang
       
    29  */
       
    30 
       
    31 import java.awt.geom.CubicCurve2D;
       
    32 
       
    33 public class ContainsHang {
       
    34     public static void main(String args[]) {
       
    35         CubicCurve2D curve =
       
    36             new CubicCurve2D.Double(83.0, 101.0,
       
    37                                     -5.3919918959078075, 94.23530547506019,
       
    38                                     71.0, 39.0,
       
    39                                     122.0, 44.0);
       
    40 
       
    41         System.out.println("Checking contains() >>>");
       
    42         curve.contains(71.0, 44.0);
       
    43         System.out.println("Check complete!!");
       
    44     }
       
    45 }