SetMaxPriority.java revision 2362
0N/A/*
4956N/A * Copyright (c) 2007, Oracle and/or its affiliates. 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
2362N/A * published by the Free Software Foundation.
0N/A *
2362N/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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
0N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
2362N/A */
2362N/A
0N/A/*
0N/A * @test
4956N/A * @bug 4708197 6497629
4956N/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) {
throw new RuntimeException("SetMaxPriority failed: max priority not changed");
}
// This will fail if bug 6497629 is present because the min tests is
// being made with the (just lowered) max instead of the parent max,
// preventing the priority from being moved back up.
tg.setMaxPriority(currentMaxPriority + 1);
int newMaxPriority = tg.getMaxPriority();
if (newMaxPriority != currentMaxPriority + 1) {
throw new RuntimeException("SetMaxPriority failed: defect 6497629 present");
}
// Confirm that max priorities out of range on both ends have no
// effect.
for (int badPriority : new int[] {Thread.MIN_PRIORITY - 1,
Thread.MAX_PRIORITY + 1}) {
int oldPriority = tg.getMaxPriority();
tg.setMaxPriority(badPriority);
if (oldPriority != tg.getMaxPriority())
throw new RuntimeException(
"setMaxPriority bad arg not ignored as specified");
}
System.out.println("SetMaxPriority passed");
}
}