/* * Copyright 1998-2002 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, * CA 95054 USA or visit www.sun.com if you need additional information or * have any questions. */ /** * @test * @bug 4152868 * @summary test Case Insensitive Comparator in String */ import java.util.*; public class ICCBasher { static final int TEST_SIZE = 20; static final int STRING_SIZE = 5; static final int CHAR_VALUE_LIMIT = 128; public static void main(String[] args) throws Exception { LinkedList L1 = new LinkedList(); LinkedList L2 = new LinkedList(); LinkedList L3 = new LinkedList(); LinkedList L4 = new LinkedList(); // First generate L1 and L2 with random lower case chars //System.out.println("Generate L1 and L2"); Random generator = new Random(); int achar=0; StringBuffer entryBuffer = new StringBuffer(10); String snippet = null; for (int x=0; x 0) { String mod = (String)L1.get(x); mod = mod.toUpperCase(); L1.set(x, mod); } achar = generator.nextInt(); if (achar > 0) { String mod = (String)L2.get(x); mod = mod.toUpperCase(); L2.set(x, mod); } } // Concatenate L1 and L2 to form L4 //System.out.println("Generate L4"); for (int x=0; x