Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 83978 invoked from network); 14 Mar 2007 06:33:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 14 Mar 2007 06:33:18 -0000 Received: (qmail 19678 invoked by uid 500); 14 Mar 2007 06:33:26 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 19575 invoked by uid 500); 14 Mar 2007 06:33:26 -0000 Mailing-List: contact commits-help@harmony.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@harmony.apache.org Delivered-To: mailing list commits@harmony.apache.org Received: (qmail 19566 invoked by uid 99); 14 Mar 2007 06:33:26 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 13 Mar 2007 23:33:26 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 13 Mar 2007 23:30:29 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id B6A36714075 for ; Tue, 13 Mar 2007 23:30:09 -0700 (PDT) Message-ID: <32087194.1173853809745.JavaMail.jira@brutus> Date: Tue, 13 Mar 2007 23:30:09 -0700 (PDT) From: "Mikhail Loenko (JIRA)" To: commits@harmony.apache.org Subject: [jira] Updated: (HARMONY-32) [classlib][text] java.text.Collator.setDecomposition(FULL_DECOMPOSITION) throws IllegalArgumentException MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/HARMONY-32?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mikhail Loenko updated HARMONY-32: ---------------------------------- Summary: [classlib][text] java.text.Collator.setDecomposition(FULL_DECOMPOSITION) throws IllegalArgumentException (was: java.text.Collator.setDecomposition(FULL_DECOMPOSITION) throws IllegalArgumentException) > [classlib][text] java.text.Collator.setDecomposition(FULL_DECOMPOSITION) throws IllegalArgumentException > --------------------------------------------------------------------------------------------------------- > > Key: HARMONY-32 > URL: https://issues.apache.org/jira/browse/HARMONY-32 > Project: Harmony > Issue Type: Bug > Components: Classlib > Reporter: tatyana doubtsova > Assigned To: Nathan Beyer > > Code for reproducing Test.java: > import java.text.Collator; > import java.util.Locale; > public class Test { > public static void main (String[] args) { > Collator c = Collator.getInstance(Locale.US); > c.setDecomposition(Collator.FULL_DECOMPOSITION); > int decompositionMode = c.getDecomposition(); > System.out.println("decomposition Mode is " + decompositionMode); > } > } > Steps to Reproduce: > 1. Build Harmony-14 j2se subset as described in README.txt. > 2. Compile Test.java using BEA 1.4 javac > > javac -d . Test.java > 2. Run java using compatible VM (J9) > > java -showversion Test > > Output: > java version 1.4.2 (subset) > (c) Copyright 1991, 2005 The Apache Software Foundation or its licensors, as applicable. > Exception in thread "main" java.lang.IllegalArgumentException: Wrong decomposition mode. > at com.ibm.icu.text.Collator.setDecomposition(Collator.java:295) > at java.text.Collator.setDecomposition(Collator.java:277) > at Test.main(Test.java:7) > Output on BEA 1.4.2: > decomposition Mode is 2 > Suggested junit test case: > package org.apache.harmony.tests.java.text; > import java.text.Collator; > import java.util.Locale; > import junit.framework.TestCase; > public class CollatorTest extends TestCase { > public static void main(String[] args) { > junit.textui.TestRunner.run(CollatorTest.class); > } > > public void test_setDecomposition() { > Collator c = Collator.getInstance(Locale.US); > try { > c.setDecomposition(Collator.FULL_DECOMPOSITION); > } catch (Exception e) { > fail("Assert 0: Unexpected exception " + e); > } > int decompositionMode = c.getDecomposition(); > assertTrue("Assert 1: next() returns incorrect value " + decompositionMode, decompositionMode == Collator.FULL_DECOMPOSITION ); > } > } -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.