hotspot/test/compiler/6855164/Test.java
author sherman
Thu, 17 Jun 2010 13:21:46 -0700
changeset 5805 87c7dd70572a
parent 5547 f4b087cbb361
permissions -rw-r--r--
6962067: TEST_BUG: Tests in java/util/zip/ZipFile leave file open Summary: Close zipfile and io stream when done Reviewed-by: alanb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3188
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
     1
/*
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3188
diff changeset
     2
 * Copyright (c) 2009, Oracle and/or its affiliates. All rights reserved.
3188
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
     4
 *
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
     7
 * published by the Free Software Foundation.
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
     8
 *
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    13
 * accompanied this code).
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    14
 *
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3188
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3188
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3188
diff changeset
    21
 * questions.
3188
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    22
 */
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    23
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    24
/*
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    25
 * @test
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    26
 * @bug 6855164
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    27
 * @summary SIGSEGV during compilation of method involving loop over CharSequence
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    28
 * @run main/othervm -Xbatch Test
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    29
 */
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    30
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    31
public class Test{
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    32
    public static void main(String[] args) throws Exception {
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    33
        StringBuffer builder = new StringBuffer();
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    34
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    35
        for(int i = 0; i < 100; i++)
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    36
            builder.append("I am the very model of a modern major general\n");
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    37
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    38
        for(int j = 0; j < builder.length(); j++){
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    39
            previousSpaceIndex(builder, j);
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    40
        }
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    41
    }
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    42
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    43
    private static final int previousSpaceIndex(CharSequence sb, int seek) {
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    44
        seek--;
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    45
        while (seek > 0) {
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    46
            if (sb.charAt(seek) == ' ') {
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    47
                while (seek > 0 && sb.charAt(seek - 1) == ' ')
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    48
                    seek--;
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    49
                return seek;
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    50
            }
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    51
            seek--;
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    52
        }
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    53
        return 0;
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    54
    }
23b1df66f64e 6857707: Add missing test case for CR 6855164 from its bug description.
cfang
parents:
diff changeset
    55
}