test/hotspot/jtreg/vmTestbase/nsk/jdwp/VirtualMachine/InstanceCounts/instanceCounts001/instanceCounts001a.java
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test/hotspot/jtreg/vmTestbase/nsk/jdwp/VirtualMachine/InstanceCounts/instanceCounts001/instanceCounts001a.java Wed May 30 20:54:45 2018 -0700
@@ -0,0 +1,64 @@
+/*
+ * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+ * 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.
+ */
+package nsk.jdwp.VirtualMachine.InstanceCounts.instanceCounts001;
+
+import java.util.ArrayList;
+import nsk.share.ReferringObjectSet;
+import nsk.share.jdi.HeapwalkingDebuggee;
+import nsk.share.jdwp.*;
+
+class TestClass1 {
+
+}
+
+class TestClass2 {
+
+}
+
+public class instanceCounts001a extends AbstractJDWPDebuggee {
+ public static final int expectedCount = HeapwalkingDebuggee.includedIntoInstancesCountTypes.size();
+
+ public static final String COMMAND_CREATE_TEST_INSTANCES = "COMMAND_CREATE_TEST_INSTANCES";
+
+ private ArrayList<ReferringObjectSet> referrers = new ArrayList<ReferringObjectSet>();
+
+ public boolean parseCommand(String command) {
+ if (super.parseCommand(command))
+ return true;
+
+ if (command.equals(COMMAND_CREATE_TEST_INSTANCES)) {
+ for (String referenceType : HeapwalkingDebuggee.includedIntoInstancesCountTypes) {
+ referrers.add(new ReferringObjectSet(new TestClass1(), 1, referenceType));
+ referrers.add(new ReferringObjectSet(new TestClass2(), 1, referenceType));
+ }
+
+ return true;
+ }
+
+ return false;
+ }
+
+ public static void main(String args[]) {
+ new instanceCounts001a().doTest(args);
+ }
+}