0N/A/*
2362N/A * Copyright (c) 2001, 2002, 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
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 *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
0N/A */
0N/A
0N/A/**
0N/A * @ test:it only runs from SparcToSparcV9Test.sh
0N/A * @bug 4478312
0N/A * @summary Test debugging with mixed 32/64bit VMs.
0N/A *
0N/A * @author Tim Bell
0N/A *
0N/A * The basic version of this test (32-bit to 32-bit) should pass
0N/A * on all platforms. The SparcToSparcv9Test.sh script uses this
0N/A * test to exercise other combinations on SPARC v9 platforms only.
0N/A *
0N/A * @run build TestScaffold VMConnection TargetListener TargetAdapter
0N/A * @run compile -g DataModelTest.java
0N/A * @run main DataModelTest
0N/A */
0N/Aimport com.sun.jdi.*;
0N/Aimport com.sun.jdi.event.*;
0N/Aimport com.sun.jdi.request.*;
0N/A
0N/Aimport java.util.*;
0N/A
0N/A /********** target program **********/
0N/A
0N/Aclass DataModelTarg {
0N/A static String dataModel;
0N/A public DataModelTarg () {
0N/A dataModel = System.getProperty("sun.arch.data.model");
0N/A }
0N/A public void ready () {
0N/A System.out.println("sun.arch.data.model is: " + dataModel);
0N/A }
0N/A public static void main(String[] args){
0N/A System.out.println("Howdy!");
0N/A DataModelTarg my = new DataModelTarg();
0N/A my.ready();
0N/A System.out.println("Goodbye from DataModelTarg!");
0N/A }
0N/A}
0N/A
0N/A /********** test program **********/
0N/A
0N/Apublic class DataModelTest extends TestScaffold {
0N/A
0N/A DataModelTest (String args[]) {
0N/A super(args);
0N/A }
0N/A
0N/A public static void main(String[] args) throws Exception {
0N/A new DataModelTest(args).startTests();
0N/A }
0N/A
0N/A protected void runTests() throws Exception {
0N/A /*
0N/A * Get to the top of ready()
0N/A */
0N/A BreakpointEvent bpe = startTo("DataModelTarg", "ready", "()V");
0N/A
0N/A ObjectReference targetObject = bpe.thread().frame(0).thisObject();
0N/A ReferenceType rt = targetObject.referenceType();
0N/A Field field = rt.fieldByName("dataModel");
0N/A Value v = targetObject.getValue(field);
0N/A StringReference sv = (StringReference) v;
0N/A String expectedValue = System.getProperty("EXPECTED", "32");
0N/A if (!expectedValue.equals(sv.value())) {
0N/A failure("Expecting sun.arch.data.model = " + expectedValue +
0N/A " but got " + sv.value() + " instead.");
0N/A }
0N/A /*
0N/A * resume the target listening for events
0N/A */
0N/A listenUntilVMDisconnect();
0N/A
0N/A /*
0N/A * deal with results of test
0N/A * if anything has called failure("foo") testFailed will be true
0N/A */
0N/A if (!testFailed) {
0N/A println("DataModelTest: passed");
0N/A } else {
0N/A throw new Exception("DataModelTest: failed");
0N/A }
0N/A }
0N/A}