|
1 /* |
|
2 * Copyright (c) 2009 Sun Microsystems, Inc. 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 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, |
|
20 * CA 95054 USA or visit www.sun.com if you need additional information or |
|
21 * have any questions. |
|
22 */ |
|
23 /* |
|
24 * @test |
|
25 * @bug 6850113 |
|
26 * @summary Verify the return value of digit() for some digits. |
|
27 */ |
|
28 |
|
29 import sun.text.normalizer.UCharacter; |
|
30 |
|
31 public class Bug6850113 { |
|
32 |
|
33 public static void main(String[] args) { |
|
34 boolean err = false; |
|
35 |
|
36 // Fullwidth Latin capital letters |
|
37 for (int i = 0xff21, j = 10; i <= 0xff3a; i++, j++) { |
|
38 if (UCharacter.digit(i, 36) != j) { |
|
39 err = true; |
|
40 System.out.println("Error: UCharacter.digit(0x" + |
|
41 Integer.toHexString(i) + ", 36) returned " + |
|
42 UCharacter.digit(i, 36) + ", expected=" + j); |
|
43 } |
|
44 } |
|
45 |
|
46 // Fullwidth Latin small letters |
|
47 for (int i = 0xff41, j = 10; i <= 0xff5a; i++, j++) { |
|
48 if (UCharacter.digit(i, 36) != j) { |
|
49 err = true; |
|
50 System.out.println("Error: UCharacter.digit(0x" + |
|
51 Integer.toHexString(i) + ", 36) returned " + |
|
52 UCharacter.digit(i, 36) + ", expected=" + j); |
|
53 } |
|
54 } |
|
55 |
|
56 if (err) { |
|
57 throw new RuntimeException("UCharacter.digit(): Wrong return value"); |
|
58 } |
|
59 } |
|
60 } |