/*
* 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 4401399
* @summary Simple basic test of jdi Monitor request and event.
*
* @author Swamy Venkataramanappa
*
* @run build TestScaffold VMConnection TargetListener TargetAdapter
* @run compile -g MonitorEventTest.java
* @run main MonitorEventTest
*/
/********** target program **********/
class MonitorTestTarg {
public static volatile boolean aboutEnterLock;
static void foo() {
}
endingMonitor = new Object();
startingMonitor = new Object();
foo();
aboutEnterLock = false;
synchronized(endingMonitor) {
// run thread
try {
// start thread
synchronized (startingMonitor) {
}
} catch (InterruptedException e) {
}
try {
}catch(Exception x){
}
}
}
try {
} catch (Exception x){
}
}
}
public void run() {
synchronized(MonitorTestTarg.startingMonitor) {
}
// contended enter wait until main thread release monitor
MonitorTestTarg.aboutEnterLock = true;
synchronized (MonitorTestTarg.endingMonitor) {
}
}
}
/********** test program **********/
super(args);
}
}
/********** event handlers **********/
}
}
}
}
/********** test core **********/
/*
* Get to the top of main()
* to determine targetClass and mainThread
*/
if (vm().canRequestMonitorEvents()) {
} else {
}
/*
* resume until end
*/
/*
* At least one of each type event should have recevied by this test.
*/
if (vm().canRequestMonitorEvents()) {
if (actualContendedEnterCount == 0) {
failure("Did not receive any contended enter event.");
}
if (actualContendedEnteredCount == 0) {
failure("Did not receive any contended entered event. ");
}
if (actualWaitCount == 0) {
failure("Did not receive any contended monitor wait event");
}
if (actualWaitedCount == 0) {
failure("Did not receive any contended monitor waited event");
}
}
/*
* deal with results of test
* if anything has called failure("foo") testFailed will be true
*/
if (!testFailed) {
println("MonitorEventTest: passed");
} else {
throw new Exception("MonitorEventTest: failed");
}
}
}