< prev index next >

test/java/awt/font/TextLayout/TestSinhalaChar.java

Print this page
rev 17561 : 8185500: [TESTBUG] Add keywords headful/printer in java/awt and javax tests.
Summary: Add new keyword 'printer'. Some minor test fixes to show headless exception. Add some @requires windows.


   4  * This code is free software; you can redistribute it and/or modify it
   5  * under the terms of the GNU General Public License version 2 only, as
   6  * published by the Free Software Foundation.
   7  *
   8  * This code is distributed in the hope that it will be useful, but WITHOUT
   9  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  10  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  11  * version 2 for more details (a copy is included in the LICENSE file that
  12  * accompanied this code).
  13  *
  14  * You should have received a copy of the GNU General Public License version
  15  * 2 along with this work; if not, write to the Free Software Foundation,
  16  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  17  *
  18  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  19  * or visit www.oracle.com if you need additional information or have any
  20  * questions.
  21  *
  22  */
  23 
  24 /* @test @(#)TestSinhalaChar.java


  25  * @summary verify lack of crash on U+0DDD.
  26  * @bug 6795060
  27  */
  28 
  29 import javax.swing.*;
  30 import javax.swing.border.LineBorder;
  31 import java.awt.*;
  32 import java.awt.event.ActionEvent;
  33 
  34 public class TestSinhalaChar {
  35     public static void main(String[] args) {
  36         SwingUtilities.invokeLater(new Runnable() {
  37             public void run() {
  38                 new TestSinhalaChar().run();
  39             }
  40         });
  41     }
  42     public static boolean AUTOMATIC_TEST=true;  // true; run test automatically, else manually at button push
  43 
  44     private void run() {




   4  * This code is free software; you can redistribute it and/or modify it
   5  * under the terms of the GNU General Public License version 2 only, as
   6  * published by the Free Software Foundation.
   7  *
   8  * This code is distributed in the hope that it will be useful, but WITHOUT
   9  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  10  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  11  * version 2 for more details (a copy is included in the LICENSE file that
  12  * accompanied this code).
  13  *
  14  * You should have received a copy of the GNU General Public License version
  15  * 2 along with this work; if not, write to the Free Software Foundation,
  16  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  17  *
  18  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  19  * or visit www.oracle.com if you need additional information or have any
  20  * questions.
  21  *
  22  */
  23 
  24 /**
  25  * @test @(#)TestSinhalaChar.java
  26  * @key headful
  27  * @summary verify lack of crash on U+0DDD.
  28  * @bug 6795060
  29  */
  30 
  31 import javax.swing.*;
  32 import javax.swing.border.LineBorder;
  33 import java.awt.*;
  34 import java.awt.event.ActionEvent;
  35 
  36 public class TestSinhalaChar {
  37     public static void main(String[] args) {
  38         SwingUtilities.invokeLater(new Runnable() {
  39             public void run() {
  40                 new TestSinhalaChar().run();
  41             }
  42         });
  43     }
  44     public static boolean AUTOMATIC_TEST=true;  // true; run test automatically, else manually at button push
  45 
  46     private void run() {


< prev index next >