< prev index next >

jdk/test/java/lang/Character/CheckScript.java

Print this page




   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 6945564 6959267 7033561 7070436 7198195 8032446
  27  * @summary  Check that the j.l.Character.UnicodeScript
  28  */
  29 
  30 import java.io.*;
  31 import java.util.*;
  32 import java.util.regex.*;
  33 import java.lang.Character.UnicodeScript;
  34 
  35 public class CheckScript {
  36 
  37     public static void main(String[] args) throws Exception {
  38         File fScripts;
  39         File fAliases;
  40         if (args.length == 0) {
  41             fScripts = new File(System.getProperty("test.src", "."), "Scripts.txt");
  42             fAliases = new File(System.getProperty("test.src", "."), "PropertyValueAliases.txt");
  43         } else if (args.length == 2) {
  44             fScripts = new File(args[0]);
  45             fAliases = new File(args[1]);
  46         } else {




   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 6945564 6959267 7033561 7070436 7198195 8032446 8072600
  27  * @summary  Check that the j.l.Character.UnicodeScript
  28  */
  29 
  30 import java.io.*;
  31 import java.util.*;
  32 import java.util.regex.*;
  33 import java.lang.Character.UnicodeScript;
  34 
  35 public class CheckScript {
  36 
  37     public static void main(String[] args) throws Exception {
  38         File fScripts;
  39         File fAliases;
  40         if (args.length == 0) {
  41             fScripts = new File(System.getProperty("test.src", "."), "Scripts.txt");
  42             fAliases = new File(System.getProperty("test.src", "."), "PropertyValueAliases.txt");
  43         } else if (args.length == 2) {
  44             fScripts = new File(args[0]);
  45             fAliases = new File(args[1]);
  46         } else {


< prev index next >