blob: 786e62c12b9275867c45dc1c9b800041d39bf680 [file] [log] [blame]
Igor Ignatyeve48cfc72018-05-05 09:24:29 -07001/*
2 * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 */
23
24
25/*
26 * @test
27 *
28 * @summary converted from VM Testbase nsk/jdi/VirtualMachine/mirrorOf_short/mirrorof_short001.
29 * VM Testbase keywords: [quick, jpda, jdi]
30 * VM Testbase readme:
31 * DESCRIPTION:
32 * The test for the implementation of an object of the type
33 * VirtualMachine.
34 * The test checks up that a result of the method
35 * com.sun.jdi.VirtualMachine.mirrorOf(short value)
36 * complies with the following requirements for ShortValue:
37 * public short value()
38 * Returns this ShortValue as a short.
39 * Returns: the short mirrored by this object.
40 * public boolean equals(java.lang.Object obj)
41 * Compares the specified Object with this ShortValue for equality.
42 * Returns: true if the Object is a ShortValue and if applying "=="
43 * to the two mirrored primitives would evaluate to true;
44 * false otherwise.
45 * public int hashCode()
46 * Returns the hash code value for this ShortValue.
47 * Returns: the integer hash code
48 * The test works as follows:
49 * A debugger program - nsk.jdi.VirtualMachine.mirrorOf_short.mirrorof_short001;
50 * a debuggee program - nsk.jdi.VirtualMachine.mirrorOf_short.mirrorof_short001a.
51 * Using nsk.jdi.share classes,
52 * the debugger gets the debuggee running on another JavaVM,
53 * creates the object debuggee.VM,
54 * establishes a pipe with the debuggee program, and then
55 * send to the programm commands, to which the debuggee replies
56 * via the pipe. Upon getting reply,
57 * the debugger calls corresponding debuggee.VM methods to get
58 * needed data and compares the data got to the data expected.
59 * In case of mismatch the test produces the return value 97 and
60 * a corresponding error message(s).
61 * Otherwise, the test is passed and produces
62 * the return value 95 and no message.
63 * COMMENTS:
64 *
65 * @library /vmTestbase
66 * /test/lib
67 * @run driver jdk.test.lib.FileInstaller . .
68 * @build nsk.jdi.VirtualMachine.mirrorOf_short.mirrorof_short001
69 * nsk.jdi.VirtualMachine.mirrorOf_short.mirrorof_short001a
70 * @run main/othervm PropertyResolvingWrapper
71 * nsk.jdi.VirtualMachine.mirrorOf_short.mirrorof_short001
72 * -verbose
73 * -arch=${os.family}-${os.simpleArch}
74 * -waittime=5
75 * -debugee.vmkind=java
76 * -transport.address=dynamic
77 * "-debugee.vmkeys=${test.vm.opts} ${test.java.opts}"
78 */
79