2442N/A/*
2442N/A * Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
2442N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2442N/A *
2442N/A * This code is free software; you can redistribute it and/or modify it
2442N/A * under the terms of the GNU General Public License version 2 only, as
2442N/A * published by the Free Software Foundation.
2442N/A *
2442N/A * This code is distributed in the hope that it will be useful, but WITHOUT
2442N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
2442N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
2442N/A * version 2 for more details (a copy is included in the LICENSE file that
2442N/A * accompanied this code).
2442N/A *
2442N/A * You should have received a copy of the GNU General Public License version
2442N/A * 2 along with this work; if not, write to the Free Software Foundation,
2442N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
2442N/A *
2442N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2442N/A * or visit www.oracle.com if you need additional information or have any
2442N/A * questions.
2442N/A *
2442N/A */
2442N/A
2442N/A/**
2442N/A * @test
2442N/A * @bug 6935022
2442N/A * @summary Server VM incorrectly breaks out of while loop
2442N/A *
2442N/A * @run main Test6935022
2442N/A */
2442N/A
2442N/Apublic class Test6935022 {
2442N/A public static final void main(String[] args) throws Exception {
2442N/A Test6935022 test = new Test6935022();
2442N/A
2442N/A int cnt = 0;
2442N/A
2442N/A while (cnt < 10000) {
2442N/A try {
2442N/A ++cnt;
2442N/A if ((cnt&1023) == 0)
2442N/A System.out.println("Thread="+Thread.currentThread().getName() + " iteration: " + cnt);
2442N/A test.loop(2147483647, (cnt&1023));
2442N/A }
2442N/A
2442N/A catch (Exception e) {
2442N/A System.out.println("Caught on iteration " + cnt);
2442N/A e.printStackTrace();
2442N/A System.exit(97);
2442N/A }
2442N/A }
2442N/A }
2442N/A
2442N/A private void loop(int endingRow, int mask) throws Exception {
2442N/A int rows = 1;
2442N/A boolean next = true;
2442N/A
2442N/A while(rows <= endingRow && next) {
2442N/A rows++;
2442N/A if (rows == mask)
2442N/A System.out.println("Rows="+rows+", end="+endingRow+", next="+next);
2442N/A next = next(rows);
2442N/A }
2442N/A
2442N/A if (next)
2442N/A throw new Exception("Ended on rows(no rs): " + rows);
2442N/A }
2442N/A
2442N/A private boolean next(int rows) {
2442N/A return rows < 12;
2442N/A }
2442N/A}
2442N/A