SetMaxPriority.java revision 0
0N/A/*
1416N/A * Copyright 2007 Sun Microsystems, Inc. All Rights Reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
0N/A * published by the Free Software Foundation.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
0N/A * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
0N/A * CA 95054 USA or visit www.sun.com if you need additional information or
0N/A * have any questions.
0N/A */
0N/A
0N/A/*
0N/A * @test
0N/A * @bug 4708197 6497629
0N/A * @summary Test for max priority setting that matches spec
0N/A * @author Pete Soper
0N/A */
0N/A
0N/Apublic class SetMaxPriority {
0N/A
0N/A public static void main(String args[]) throws Exception {
0N/A ThreadGroup tg = new ThreadGroup("foo");
0N/A ThreadGroup ptg = tg.getParent();
0N/A int currentMaxPriority = tg.getMaxPriority();
0N/A int halfMaxPriority = ptg.getMaxPriority() / 2;
0N/A if (halfMaxPriority - Thread.MIN_PRIORITY < 2) {
0N/A throw new RuntimeException("SetMaxPriority test no longer valid: starting parent max priority too close to Thread.MIN_PRIORITY");
0N/A }
0N/A tg.setMaxPriority(halfMaxPriority - 2);
0N/A currentMaxPriority = tg.getMaxPriority();
0N/A if (currentMaxPriority != halfMaxPriority - 2) {
0N/A throw new RuntimeException("SetMaxPriority failed: max priority not changed");
0N/A }
0N/A
0N/A // This will fail if bug 6497629 is present because the min tests is
0N/A // being made with the (just lowered) max instead of the parent max,
0N/A // preventing the priority from being moved back up.
0N/A tg.setMaxPriority(currentMaxPriority + 1);
0N/A int newMaxPriority = tg.getMaxPriority();
0N/A if (newMaxPriority != currentMaxPriority + 1) {
0N/A throw new RuntimeException("SetMaxPriority failed: defect 6497629 present");
0N/A }
0N/A
0N/A // Confirm that max priorities out of range on both ends have no
0N/A // effect.
0N/A for (int badPriority : new int[] {Thread.MIN_PRIORITY - 1,
0N/A Thread.MAX_PRIORITY + 1}) {
0N/A int oldPriority = tg.getMaxPriority();
0N/A tg.setMaxPriority(badPriority);
0N/A if (oldPriority != tg.getMaxPriority())
0N/A throw new RuntimeException(
0N/A "setMaxPriority bad arg not ignored as specified");
0N/A }
0N/A
0N/A System.out.println("SetMaxPriority passed");
0N/A }
0N/A}
0N/A