/*
* 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 4451941 4527072
* @summary Test argument types for invoke
*
* @author Robert Field
*
* @library ..
* @run build TestScaffold VMConnection TargetListener TargetAdapter
* @run compile -g InvokeTest.java
* @run main InvokeTest
*/
/********** target program **********/
class InvokeTarg {
boolean[] aBooleanArray = new boolean[] {true, true};
boolean[][] aBoolean2DArray = new boolean[][]
{{true, false}, {false, true}};
{{"hi", "there"}, {"oh"}};
boolean booleanCheck = false;
boolean voidCheck = false;
(new InvokeTarg()).sayHi();
}
void sayHi() {
}
void checkIn() {
}
boolean invokeVoid() {
voidCheck = true;
checkIn();
return true;
}
booleanCheck = val;
checkIn();
return val;
}
checkIn();
return val;
}
checkIn();
return val;
}
checkIn();
return val;
}
checkIn();
return val;
}
checkIn();
return val;
}
checkIn();
return val;
}
checkIn();
return val;
}
objectCheck = val;
checkIn();
return val;
}
objectCheck = val;
checkIn();
return val;
}
objectCheck = val;
checkIn();
return val;
}
objectCheck = val;
checkIn();
return val;
}
objectCheck = val;
checkIn();
return val;
}
objectCheck = val;
checkIn();
return val;
}
objectCheck = val;
checkIn();
return val;
}
objectCheck = val;
checkIn();
return val;
}
objectCheck = val;
checkIn();
return val;
}
objectCheck = val;
checkIn();
return val;
}
objectCheck = val;
checkIn();
return val;
}
objectCheck = val;
checkIn();
return val;
}
objectCheck = val;
checkIn();
return val;
}
objectCheck = val;
checkIn();
return val;
}
objectCheck = val;
checkIn();
return val;
}
objectCheck = val;
checkIn();
return val;
}
objectCheck = val;
checkIn();
return val;
}
objectCheck = val;
checkIn();
return val;
}
objectCheck = val;
checkIn();
return val;
}
objectCheck = val;
checkIn();
return val;
}
objectCheck = val;
checkIn();
return val;
}
objectCheck = val;
checkIn();
return val;
}
objectCheck = val;
checkIn();
return val;
}
objectCheck = val;
checkIn();
return val;
}
}
/********** test program **********/
super(args);
}
}
/********** event handlers **********/
// not use now
println("Got BreakpointEvent");
}
/********** test assist **********/
try {
}
// It has to be the same value as what we passed in!
+ value);
} else {
" expected: " + value );
} else {
}
}
((value instanceof BooleanValue)?
booleanValue : longValue) :
}
throws Exception {
return;
}
}
throws Exception {
}
throws Exception {
}
if ( toStringMethod != null) {
return toStringMethod;
}
// We have to find it. First find java.lang.Object
objectMirror = xx;
break;
}
}
if (objectMirror == null) {
return null;
}
// Then find toSting
return toStringMethod;
}
}
return null;
}
// This calls toString on a field
// Sorry for this kludgy use of global vars.
}
}
/********** test core **********/
/*
* Get to the top of sayHi()
* to determine targetClass and mainThread
*/
callToString("aBooleanArray");
"aStringArray");
"aString2DArray");
"aDate");
"aDateArray");
"aDate2DArray");
invoke("invokeCombo",
invoke("invokeCombo2",
/*
* resume the target listening for events
*/
/*
* deal with results of test
* if anything has called failure("foo") testFailed will be true
*/
if (!testFailed) {
println("InvokeTest: passed");
} else {
throw new Exception("InvokeTest: failed");
}
}
}