JDK-8241521 : dcmd/framework/InvalidCommandTest.java failed due to IOPipe "ConnectException: Connection refused"
  • Type: Bug
  • Component: core-svc
  • Sub-Component: tools
  • Affected Version: 15,16,17
  • Priority: P4
  • Status: Resolved
  • Resolution: Duplicate
  • OS: os_x
  • CPU: x86_64
  • Submitted: 2020-03-24
  • Updated: 2021-05-12
  • Resolved: 2021-05-12
Related Reports
Duplicate :  
Relates :  
Description
The following test failed in the JDK15 CI:

serviceability/dcmd/framework/InvalidCommandTest.java

Here's a snippet from the log file:

----------------------------------------

test InvalidCommandTest.jmx(): success
debugee.stdout> Test Java process started!
debugee.stderr> Exception in thread "main" nsk.share.Failure: Unable to attach for IOPipe connection to localhost:64837 for 120000ms timeout:
debugee.stderr> 	java.net.ConnectException: Connection refused
debugee.stderr> 	at nsk.share.jpda.BasicSocketConnection.continueAttach(SocketConnection.java:281)
debugee.stderr> 	at nsk.share.jpda.SocketConnection.continueAttach(SocketConnection.java:485)
debugee.stderr> 	at nsk.share.jpda.SocketIOPipe.connect(SocketIOPipe.java:240)
debugee.stderr> 	at nsk.share.jpda.IOPipe.connect(IOPipe.java:88)
debugee.stderr> 	at nsk.share.jpda.SocketIOPipe.println(SocketIOPipe.java:181)
debugee.stderr> 	at process.TestJavaProcess.main(TestJavaProcess.java:47)
test InvalidCommandTest.mainClass(): failure
nsk.share.Failure: Unable to send object throw not established IOPipe connection:
	quit
	at nsk.share.jpda.SocketConnection.writeObject(SocketConnection.java:564)
	at nsk.share.jpda.SocketIOPipe.println(SocketIOPipe.java:183)
	at TestProcessLauncher.quit(TestProcessLauncher.java:80)
	at InvalidCommandTest.mainClass(InvalidCommandTest.java:62)
	at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
	at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.base/java.lang.reflect.Method.invoke(Method.java:564)
	at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:85)
	at org.testng.internal.Invoker.invokeMethod(Invoker.java:639)
	at org.testng.internal.Invoker.invokeTestMethod(Invoker.java:821)
	at org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1131)
	at org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:124)
	at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:108)
	at org.testng.TestRunner.privateRun(TestRunner.java:773)
	at org.testng.TestRunner.run(TestRunner.java:623)
	at org.testng.SuiteRunner.runTest(SuiteRunner.java:357)
	at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:352)
	at org.testng.SuiteRunner.privateRun(SuiteRunner.java:310)
	at org.testng.SuiteRunner.run(SuiteRunner.java:259)
	at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52)
	at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86)
	at org.testng.TestNG.runSuitesSequentially(TestNG.java:1185)
	at org.testng.TestNG.runSuitesLocally(TestNG.java:1110)
	at org.testng.TestNG.run(TestNG.java:1018)
	at com.sun.javatest.regtest.agent.TestNGRunner.main(TestNGRunner.java:94)
	at com.sun.javatest.regtest.agent.TestNGRunner.main(TestNGRunner.java:54)
	at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
	at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.base/java.lang.reflect.Method.invoke(Method.java:564)
	at com.sun.javatest.regtest.agent.MainWrapper$MainThread.run(MainWrapper.java:127)
	at java.base/java.lang.Thread.run(Thread.java:832)
Running DCMD 'asdf' through 'PidJcmdExecutor'
Executing command '[/scratch/mesos/jib-master/install/jdk-15+16-662/macosx-x64-debug.jdk/jdk-15/fastdebug/bin/jcmd, 73136, asdf]'
[2020-03-24T07:15:01.517175Z] Gathering output for process 73275
[2020-03-24T07:15:02.232425Z] Waiting for completion for process 73275
[2020-03-24T07:15:02.232609Z] Waiting for completion finished for process 73275
Command returned with exit code 1
---------------- stdout ----------------

The above IOPipe failure appears to be the reason for the test failure.


Do not be confused by these parts of the log file:

---------------- stderr ----------------
java.lang.IllegalArgumentException: Unknown diagnostic command

----------------------------------------

The above is the error message on stderr that this test is looking for.
The above is not the reason for the test failure.


---------------- stderr ----------------
java.lang.IllegalArgumentException: Unknown diagnostic command: asdf
	at jdk.test.lib.dcmd.JMXExecutor.executeImpl(JMXExecutor.java:105)
	at jdk.test.lib.dcmd.CommandExecutor.execute(CommandExecutor.java:61)
	at jdk.test.lib.dcmd.CommandExecutor.execute(CommandExecutor.java:43)
	at InvalidCommandTest.run(InvalidCommandTest.java:46)
	at InvalidCommandTest.jmx(InvalidCommandTest.java:73)
	at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
	at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.base/java.lang.reflect.Method.invoke(Method.java:564)
	at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:85)
	at org.testng.internal.Invoker.invokeMethod(Invoker.java:639)
	at org.testng.internal.Invoker.invokeTestMethod(Invoker.java:821)
	at org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1131)
	at org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:124)
	at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:108)
	at org.testng.TestRunner.privateRun(TestRunner.java:773)
	at org.testng.TestRunner.run(TestRunner.java:623)
	at org.testng.SuiteRunner.runTest(SuiteRunner.java:357)
	at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:352)
	at org.testng.SuiteRunner.privateRun(SuiteRunner.java:310)
	at org.testng.SuiteRunner.run(SuiteRunner.java:259)
	at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52)
	at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86)
	at org.testng.TestNG.runSuitesSequentially(TestNG.java:1185)
	at org.testng.TestNG.runSuitesLocally(TestNG.java:1110)
	at org.testng.TestNG.run(TestNG.java:1018)
	at com.sun.javatest.regtest.agent.TestNGRunner.main(TestNGRunner.java:94)
	at com.sun.javatest.regtest.agent.TestNGRunner.main(TestNGRunner.java:54)
	at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
	at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.base/java.lang.reflect.Method.invoke(Method.java:564)
	at com.sun.javatest.regtest.agent.MainWrapper$MainThread.run(MainWrapper.java:127)
	at java.base/java.lang.Thread.run(Thread.java:832)
Caused by: javax.management.ReflectionException
	at jdk.management/com.sun.management.internal.DiagnosticCommandImpl.invoke(DiagnosticCommandImpl.java:273)
	at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:809)
	at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:801)
	at jdk.test.lib.dcmd.JMXExecutor.executeImpl(JMXExecutor.java:96)
	... 33 more
Caused by: java.lang.NoSuchMethodException: Method asdf with signature [[Ljava.lang.String;] not found
	... 37 more

----------------------------------------

The above is the IllegalArgumentException that this test is look for.
The above is not the reason for the test failure.
Comments
Here's a log file snippet from the jdk-17+21-1818-tier8 sighting: debugee.stdout> Test Java process started! test InvalidCommandTest.mainClass(): failure nsk.share.Failure: Unable to send object throw not established IOPipe connection: quit at nsk.share.jpda.SocketConnection.writeObject(SocketConnection.java:564) at nsk.share.jpda.SocketIOPipe.println(SocketIOPipe.java:183) at TestProcessLauncher.quit(TestProcessLauncher.java:80) at InvalidCommandTest.mainClass(InvalidCommandTest.java:62) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:78) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:85) at org.testng.internal.Invoker.invokeMethod(Invoker.java:639) at org.testng.internal.Invoker.invokeTestMethod(Invoker.java:821) at org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1131) at org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:124) at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:108) at org.testng.TestRunner.privateRun(TestRunner.java:773) at org.testng.TestRunner.run(TestRunner.java:623) at org.testng.SuiteRunner.runTest(SuiteRunner.java:357) at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:352) at org.testng.SuiteRunner.privateRun(SuiteRunner.java:310) at org.testng.SuiteRunner.run(SuiteRunner.java:259) at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52) at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86) at org.testng.TestNG.runSuitesSequentially(TestNG.java:1185) at org.testng.TestNG.runSuitesLocally(TestNG.java:1110) at org.testng.TestNG.run(TestNG.java:1018) at com.sun.javatest.regtest.agent.TestNGRunner.main(TestNGRunner.java:94) at com.sun.javatest.regtest.agent.TestNGRunner.main(TestNGRunner.java:54) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:78) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at com.sun.javatest.regtest.agent.MainWrapper$MainThread.run(MainWrapper.java:127) at java.base/java.lang.Thread.run(Thread.java:831) Running DCMD 'asdf' through 'PidJcmdExecutor' Executing command '[/System/Volumes/Data/mesos/work_dir/jib-master/install/jdk-17+21-1818/macosx-x64-debug.jdk/jdk-17/fastdebug/bin/jcmd, 84587, asdf]' [2021-05-03T07:40:50.880772Z] Gathering output for process 84629 debugee.stderr> Exception in thread "main" nsk.share.Failure: Unable to attach for IOPipe connection to localhost:57529 for 120000ms timeout: debugee.stderr> java.net.ConnectException: Connection refused debugee.stderr> at nsk.share.jpda.BasicSocketConnection.continueAttach(SocketConnection.java:281) debugee.stderr> at nsk.share.jpda.SocketConnection.continueAttach(SocketConnection.java:485) debugee.stderr> at nsk.share.jpda.SocketIOPipe.connect(SocketIOPipe.java:240) debugee.stderr> at nsk.share.jpda.IOPipe.connect(IOPipe.java:90) debugee.stderr> at nsk.share.jpda.SocketIOPipe.println(SocketIOPipe.java:181) debugee.stderr> at process.TestJavaProcess.main(TestJavaProcess.java:47) [2021-05-03T07:40:51.269599Z] Waiting for completion for process 84629 [2021-05-03T07:40:51.269648Z] Waiting for completion finished for process 84629 Output and diagnostic info for process 84629 was saved into 'pid-84629-output.log' [2021-05-03T07:40:51.333343Z] Waiting for completion for process 84629 [2021-05-03T07:40:51.333378Z] Waiting for completion finished for process 84629 Command returned with exit code 1 ---------------- stdout ----------------
07-05-2021

Here's a snippet from the serviceability/dcmd/framework/HelpTest.java log file in the jdk-16+25-1590-tier3 sighting: ---------------------------------------- test HelpTest.jmx(): success debugee.stdout> Test Java process started! debugee.stdout> Waiting for the quit command from the test ... Running DCMD 'help' through 'MainClassJcmdExecutor' Executing command '[/scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk-16+25-1590/linux-aarch64-debug.jdk/jdk-16/fastdebug/bin/jcmd, HelpTest$Process, help]' [2020-11-16T12:06:50.048723Z] Gathering output for process 31230 [2020-11-16T12:07:01.985490450Z] Waiting for completion for process 31230 [2020-11-16T12:07:01.985786550Z] Waiting for completion finished for process 31230 Output and diagnostic info for process 31230 was saved into 'pid-31230-output.log' [2020-11-16T12:07:01.987915650Z] Waiting for completion for process 31230 [2020-11-16T12:07:01.988079775Z] Waiting for completion finished for process 31230 Command returned with exit code 1 ---------------- stdout ---------------- 31186: ---------------- stderr ---------------- com.sun.tools.attach.AttachNotSupportedException: Unable to open socket file /proc/31186/root/tmp/.java_pid31186: target process 31186 doesn't respond within 10500ms or HotSpot VM not loaded at jdk.attach/sun.tools.attach.VirtualMachineImpl.<init>(VirtualMachineImpl.java:103) at jdk.attach/sun.tools.attach.AttachProviderImpl.attachVirtualMachine(AttachProviderImpl.java:58) at jdk.attach/com.sun.tools.attach.VirtualMachine.attach(VirtualMachine.java:207) at jdk.jcmd/sun.tools.jcmd.JCmd.executeCommandForPid(JCmd.java:113) at jdk.jcmd/sun.tools.jcmd.JCmd.main(JCmd.java:97) ---------------------------------------- [2020-11-16T12:07:01.989245875Z] Waiting for completion for process 31230 [2020-11-16T12:07:01.989397575Z] Waiting for completion finished for process 31230 debugee.stdout> 'quit' received test HelpTest.mainClass(): failure java.lang.RuntimeException: 'The following commands are available' missing from stdout/stderr at jdk.test.lib.process.OutputAnalyzer.shouldContain(OutputAnalyzer.java:189) at HelpTest.run(HelpTest.java:47) at HelpTest.mainClass(HelpTest.java:62) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:64) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:564) at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:85) at org.testng.internal.Invoker.invokeMethod(Invoker.java:639) at org.testng.internal.Invoker.invokeTestMethod(Invoker.java:821) at org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1131) at org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:124) at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:108) at org.testng.TestRunner.privateRun(TestRunner.java:773) at org.testng.TestRunner.run(TestRunner.java:623) at org.testng.SuiteRunner.runTest(SuiteRunner.java:357) at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:352) at org.testng.SuiteRunner.privateRun(SuiteRunner.java:310) at org.testng.SuiteRunner.run(SuiteRunner.java:259) at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52) at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86) at org.testng.TestNG.runSuitesSequentially(TestNG.java:1185) at org.testng.TestNG.runSuitesLocally(TestNG.java:1110) at org.testng.TestNG.run(TestNG.java:1018) at com.sun.javatest.regtest.agent.TestNGRunner.main(TestNGRunner.java:94) at com.sun.javatest.regtest.agent.TestNGRunner.main(TestNGRunner.java:54) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:64) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:564) at com.sun.javatest.regtest.agent.MainWrapper$MainThread.run(MainWrapper.java:127) at java.base/java.lang.Thread.run(Thread.java:831) Running DCMD 'help' through 'PidJcmdExecutor' Executing command '[/scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk-16+25-1590/linux-aarch64-debug.jdk/jdk-16/fastdebug/bin/jcmd, 31113, help]' [2020-11-16T12:07:02.036237925Z] Gathering output for process 31288 [2020-11-16T12:07:02.928741275Z] Waiting for completion for process 31288 [2020-11-16T12:07:02.929024400Z] Waiting for completion finished for process 31288 Output and diagnostic info for process 31288 was saved into 'pid-31288-output.log' [2020-11-16T12:07:02.930867675Z] Waiting for completion for process 31288 [2020-11-16T12:07:02.931016900Z] Waiting for completion finished for process 31288 Command returned with exit code 0 ---------------- stdout ----------------
16-11-2020

Here's a snippet from the serviceability/dcmd/framework/InvalidCommandTest.java log file in the jdk-16+25-1590-tier3 sighting: #section:testng ----------messages:(5/435)---------- command: testng -XX:+UsePerfData InvalidCommandTest reason: User specified action: run testng/othervm -XX:+UsePerfData InvalidCommandTest Mode: othervm [/othervm specified] Additional options from @modules: --add-modules java.base,java.compiler,java.management,jdk.internal.jvmstat --add-exports java.base/jdk.internal.misc=ALL-UNNAMED --add-exports jdk.internal.jvmstat/sun.jvmstat.monitor=ALL-UNNAMED elapsed time (seconds): 17.871 ----------configuration:(5/225)---------- Boot Layer add modules: java.base java.compiler java.management jdk.internal.jvmstat add exports: java.base/jdk.internal.misc ALL-UNNAMED jdk.internal.jvmstat/sun.jvmstat.monitor ALL-UNNAMED ----------System.out:(193/12386)---------- [TestNG] Running: serviceability/dcmd/framework/InvalidCommandTest.java Running DCMD 'asdf' through 'FileJcmdExecutor' Executing command '[/scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk-16+25-1590/linux-aarch64-debug.jdk/jdk-16/fastdebug/bin/jcmd, 31160, -f, /scratch/opt/mach5/mesos/work_dir/slaves/4076d11c-c6ed-4d07-84c1-4ab8d55cd975-S106787/frameworks/1735e8a2-a1db-478c-8104-60c8b0af87dd-0196/executors/5941cab2-6083-43ad-acce-24b553699fff/runs/07e19af5-a458-4922-8e84-7e09821315c5/testoutput/test-support/jtreg_open_test_hotspot_jtreg_tier1_serviceability/tmp/input5860656296104121402jcmd]' [2020-11-16T12:06:49.595760475Z] Gathering output for process 31207 [2020-11-16T12:07:01.074723775Z] Waiting for completion for process 31207 [2020-11-16T12:07:01.075050450Z] Waiting for completion finished for process 31207 Output and diagnostic info for process 31207 was saved into 'pid-31207-output.log' [2020-11-16T12:07:01.099857250Z] Waiting for completion for process 31207 [2020-11-16T12:07:01.100155425Z] Waiting for completion finished for process 31207 Command returned with exit code 1 ---------------- stdout ---------------- 31160: ---------------- stderr ---------------- com.sun.tools.attach.AttachNotSupportedException: Unable to open socket file /proc/31160/root/tmp/.java_pid31160: target process 31160 doesn't respond within 10500ms or HotSpot VM not loaded at jdk.attach/sun.tools.attach.VirtualMachineImpl.<init>(VirtualMachineImpl.java:103) at jdk.attach/sun.tools.attach.AttachProviderImpl.attachVirtualMachine(AttachProviderImpl.java:58) at jdk.attach/com.sun.tools.attach.VirtualMachine.attach(VirtualMachine.java:207) at jdk.jcmd/sun.tools.jcmd.JCmd.executeCommandForPid(JCmd.java:113) at jdk.jcmd/sun.tools.jcmd.JCmd.main(JCmd.java:97) ---------------------------------------- [2020-11-16T12:07:01.101562050Z] Waiting for completion for process 31207 [2020-11-16T12:07:01.101729950Z] Waiting for completion finished for process 31207 test InvalidCommandTest.file(): failure java.lang.RuntimeException: 'Unknown diagnostic command' missing from stdout/stderr at jdk.test.lib.process.OutputAnalyzer.shouldContain(OutputAnalyzer.java:189) at InvalidCommandTest.run(InvalidCommandTest.java:47) at InvalidCommandTest.file(InvalidCommandTest.java:68) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:64) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:564) at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:85) at org.testng.internal.Invoker.invokeMethod(Invoker.java:639) at org.testng.internal.Invoker.invokeTestMethod(Invoker.java:821) at org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1131) at org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:124) at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:108) at org.testng.TestRunner.privateRun(TestRunner.java:773) at org.testng.TestRunner.run(TestRunner.java:623) at org.testng.SuiteRunner.runTest(SuiteRunner.java:357) at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:352) at org.testng.SuiteRunner.privateRun(SuiteRunner.java:310) at org.testng.SuiteRunner.run(SuiteRunner.java:259) at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52) at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86) at org.testng.TestNG.runSuitesSequentially(TestNG.java:1185) at org.testng.TestNG.runSuitesLocally(TestNG.java:1110) at org.testng.TestNG.run(TestNG.java:1018) at com.sun.javatest.regtest.agent.TestNGRunner.main(TestNGRunner.java:94) at com.sun.javatest.regtest.agent.TestNGRunner.main(TestNGRunner.java:54) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:64) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:564) at com.sun.javatest.regtest.agent.MainWrapper$MainThread.run(MainWrapper.java:127) at java.base/java.lang.Thread.run(Thread.java:831) Running DCMD 'asdf' through 'JMXExecutor' ---------------- stdout ----------------
16-11-2020