< prev index next >

test/jdk/java/util/Locale/Bug8040211.java

Print this page
rev 58349 : [mq]: 8241082
   1 /*
   2  * Copyright (c) 2016, 2019, 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 8040211 8191404 8203872 8222980 8225435
  27  * @summary Checks the IANA language subtag registry data update
  28  *          (LSR Revision: 2019-09-16) with Locale and Locale.LanguageRange
  29  *          class methods.
  30  * @run main Bug8040211
  31  */
  32 
  33 import java.util.ArrayList;
  34 import java.util.Iterator;
  35 import java.util.Locale;
  36 import java.util.List;
  37 import java.util.Locale.LanguageRange;
  38 import java.util.Locale.FilteringMode;
  39 import static java.util.Locale.FilteringMode.EXTENDED_FILTERING;
  40 
  41 public class Bug8040211 {
  42 
  43     static boolean err = false;
  44 
  45     private static final String ACCEPT_LANGUAGE =
  46         "Accept-Language: aam, adp, aog, aue, bcg, cey, cqu, dif, ema,"
  47         + " en-gb-oed, gti, kdz, koj, kwq, kxe, lii, lmm, lsn, lsv, lvi, mtm,"
  48         + " ngv, nns, oyb, phr, pnd, pub, snz, suj, szy,taj, tjj, tjp, tvx,"


   1 /*
   2  * Copyright (c) 2016, 2020, 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 8040211 8191404 8203872 8222980 8225435 8241082
  27  * @summary Checks the IANA language subtag registry data update
  28  *          (LSR Revision: 2020-03-16) with Locale and Locale.LanguageRange
  29  *          class methods.
  30  * @run main Bug8040211
  31  */
  32 
  33 import java.util.ArrayList;
  34 import java.util.Iterator;
  35 import java.util.Locale;
  36 import java.util.List;
  37 import java.util.Locale.LanguageRange;
  38 import java.util.Locale.FilteringMode;
  39 import static java.util.Locale.FilteringMode.EXTENDED_FILTERING;
  40 
  41 public class Bug8040211 {
  42 
  43     static boolean err = false;
  44 
  45     private static final String ACCEPT_LANGUAGE =
  46         "Accept-Language: aam, adp, aog, aue, bcg, cey, cqu, dif, ema,"
  47         + " en-gb-oed, gti, kdz, koj, kwq, kxe, lii, lmm, lsn, lsv, lvi, mtm,"
  48         + " ngv, nns, oyb, phr, pnd, pub, snz, suj, szy,taj, tjj, tjp, tvx,"


< prev index next >