mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-19 18:44:38 +02:00
8054890: Serviceability: New diagnostic commands 'VM.set_flag' and 'JVMTI.data_dump'
Reviewed-by: sla, fparain, egahlin, ykantser
This commit is contained in:
parent
1665046b90
commit
a16c45029d
4 changed files with 282 additions and 0 deletions
60
hotspot/test/serviceability/dcmd/jvmti/DataDumpDcmdTest.java
Normal file
60
hotspot/test/serviceability/dcmd/jvmti/DataDumpDcmdTest.java
Normal file
|
@ -0,0 +1,60 @@
|
|||
/*
|
||||
* Copyright (c) 2015, 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.
|
||||
*/
|
||||
|
||||
import com.oracle.java.testlibrary.OutputAnalyzer;
|
||||
import com.oracle.java.testlibrary.dcmd.CommandExecutor;
|
||||
import com.oracle.java.testlibrary.dcmd.JMXExecutor;
|
||||
import com.oracle.java.testlibrary.dcmd.PidJcmdExecutor;
|
||||
import org.testng.annotations.Test;
|
||||
|
||||
/*
|
||||
* @test
|
||||
* @bug 8054890
|
||||
* @summary Test of JVMTI.data_dump diagnostic command
|
||||
* @library /testlibrary
|
||||
* @build com.oracle.java.testlibrary.*
|
||||
* @run testng DataDumpDcmdTest
|
||||
*/
|
||||
|
||||
/**
|
||||
* This test issues the "JVMTI.data_dump" command which will dump the related JVMTI
|
||||
* data.
|
||||
*
|
||||
*/
|
||||
public class DataDumpDcmdTest {
|
||||
public void run(CommandExecutor executor) {
|
||||
OutputAnalyzer output = executor.execute("JVMTI.data_dump");
|
||||
|
||||
output.stderrShouldBeEmpty();
|
||||
}
|
||||
|
||||
@Test
|
||||
public void jmx() throws Throwable {
|
||||
run(new JMXExecutor());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void cli() throws Throwable {
|
||||
run(new PidJcmdExecutor());
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue