/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* 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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/**
* @test
* @bug 6496524
* @summary Setting breakpoint in jdb crashes Hotspot JVM
*
* @author jjh
*
* @run build TestScaffold VMConnection TargetListener TargetAdapter
* @run compile -g BreakpointTest.java
* @run main BreakpointTest
*/
// The debuggee just runs in a loop. The debugger
// sets a bkpt on the Math.random call. When the
// bkpt is hit, the debugger disables it, resumes
// the debuggee, waits a bit, and enables the bkpt again.
class BreakpointTarg {
// LINE NUMBER SENSITIVE
public static long count;
static void doit() {
while (true) {
// This println makes the test pass
//System.out.println("Debuggee: index = " + index);
// and null instead of new Object()
// passes
count++;
}
}
doit();
}
}
/********** test program **********/
super(args);
}
}
/********** event handlers **********/
int bkptCount;
// When we get a bkpt we want to disable the request,
// resume the debuggee, and then re-enable the request
", debuggeeCount = " +
);
}
// The main thread watchs the bkptCount to
// see if bkpts stop coming in. The
// test _should_ fail well before maxBkpts bkpts.
try {
} catch (InterruptedException ee) {
}
}
}
println("Got VMDisconnectEvent");
}
/********** test core **********/
/*
* Get to the top of main()
* to determine targetClass and mainThread
*/
try {
addListener (this);
failure("failure: Could not add listener");
throw new Exception("BreakpointTest: failed");
}
int prevBkptCount;
try {
} catch (InterruptedException ee) {
}
}
println("done with loop, final count = " +
removeListener(this);
/*
* deal with results of test
* if anything has called failure("foo") testFailed will be true
*/
if (!testFailed) {
println("BreakpointTest: passed");
} else {
throw new Exception("BreakpointTest: failed");
}
}
}