JDK-8217351 : serviceability/dcmd/framework/InvalidCommandTest.java failed with timeout
  • Type: Bug
  • Component: core-svc
  • Sub-Component: tools
  • Affected Version: 13
  • Priority: P4
  • Status: Resolved
  • Resolution: Duplicate
  • OS: linux
  • CPU: x86_64
  • Submitted: 2019-01-17
  • Updated: 2019-06-21
  • Resolved: 2019-06-21
Related Reports
Duplicate :  
Relates :  
Description
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:45)
	at InvalidCommandTest.jmx(InvalidCommandTest.java:66)
	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:567)
	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:567)
	at com.sun.javatest.regtest.agent.MainWrapper$MainThread.run(MainWrapper.java:127)
	at java.base/java.lang.Thread.run(Thread.java:835)
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
Comments
The problem here is that get_namespace_pid() method, that is called by mmap_attach_shared () that in turn is called by PerfMemory::attach(), doesn't check that the error indicator associated with stream is set that results in the endless loop (lines 664-677) if the process terminates after /proc/<pid>/status was opened (line 659) 658 snprintf(fname, sizeof(fname), "/proc/%d/status", vmid); 659 FILE *fp = fopen(fname, "r"); 660 661 if (fp) { 662 int pid, nspid; 663 int ret; 664 while (!feof(fp)) { 665 ret = fscanf(fp, "NSpid: %d %d", &pid, &nspid); <skipped> 677 } This problem is addressed in JDK-8220175. Closing this as a duplicate of JDK-8220175
21-06-2019

native stack trace: Missing separate debuginfo for /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/bin/jcmd Missing separate debuginfo for /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/bin/../lib/libjli.so [New LWP 31238] [New LWP 23880] [New LWP 23859] [New LWP 23830] [New LWP 23828] [New LWP 23827] [New LWP 23826] [New LWP 23825] [New LWP 23824] [New LWP 23823] [New LWP 23822] [New LWP 23821] [New LWP 23820] [New LWP 23819] [New LWP 23818] [New LWP 23816] [New LWP 23815] [New LWP 23814] [New LWP 23813] [Thread debugging using libthread_db enabled] Using host libthread_db library "/lib64/libthread_db.so.1". Missing separate debuginfo for /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so Missing separate debuginfo for /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/libverify.so Missing separate debuginfo for /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/libjava.so Missing separate debuginfo for /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/libzip.so Missing separate debuginfo for /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/libjimage.so Missing separate debuginfo for /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/libnio.so Missing separate debuginfo for /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/libnet.so 0x00007f98292a3ef7 in pthread_join () from /lib64/libpthread.so.0 Thread 20 (Thread 0x7f9829a97700 (LWP 23813)): #0 0x00007f9828dc0a0d in read () from /lib64/libc.so.6 #1 0x00007f9828d509b0 in __GI__IO_file_underflow () from /lib64/libc.so.6 #2 0x00007f9828d5193e in __GI__IO_default_uflow () from /lib64/libc.so.6 #3 0x00007f9828d4cbce in getc () from /lib64/libc.so.6 #4 0x00007f9828007398 in PerfMemory::attach(char const*, int, PerfMemory::PerfMemoryMode, char**, unsigned long*, Thread*) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #5 0x00007f9827ffb112 in Perf_Attach () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #6 0x00007f9808b845eb in ?? () #7 0x0000000000000043 in ?? () #8 0x0000000800360700 in ?? () #9 0x0000000000000099 in ?? () #10 0x0000000000000000 in ?? () Thread 19 (Thread 0x7f9824b68700 (LWP 23814)): #0 0x00007f98292a8790 in sem_wait () from /lib64/libpthread.so.0 #1 0x00007f98280fc134 in PosixSemaphore::wait() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #2 0x00007f98283d0639 in SemaphoreGangTaskDispatcher::worker_wait_for_task() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #3 0x00007f98283cfa9b in GangWorker::loop() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #4 0x00007f9828281040 in Thread::call_run() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #5 0x00007f9827f6a71d in thread_native_entry(Thread*) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #6 0x00007f98292a2dc5 in start_thread () from /lib64/libpthread.so.0 #7 0x00007f9828dcf1ed in clone () from /lib64/libc.so.6 Thread 18 (Thread 0x7f9824a67700 (LWP 23815)): #0 0x00007f98292a66d5 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0 #1 0x00007f9827f7939b in os::PlatformEvent::park() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #2 0x00007f9827ec08f0 in Monitor::IWait(Thread*, long) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #3 0x00007f9827ec4237 in Monitor::wait(bool, long, bool) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #4 0x00007f98277721bd in G1ConcurrentMarkThread::sleep_before_next_cycle() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #5 0x00007f9827772448 in G1ConcurrentMarkThread::run_service() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #6 0x00007f982750ad23 in ConcurrentGCThread::run() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #7 0x00007f9828281040 in Thread::call_run() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #8 0x00007f9827f6a71d in thread_native_entry(Thread*) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #9 0x00007f98292a2dc5 in start_thread () from /lib64/libpthread.so.0 #10 0x00007f9828dcf1ed in clone () from /lib64/libc.so.6 Thread 17 (Thread 0x7f9824966700 (LWP 23816)): #0 0x00007f98292a8790 in sem_wait () from /lib64/libpthread.so.0 #1 0x00007f98280fc134 in PosixSemaphore::wait() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #2 0x00007f98283d0639 in SemaphoreGangTaskDispatcher::worker_wait_for_task() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #3 0x00007f98283cfa9b in GangWorker::loop() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #4 0x00007f9828281040 in Thread::call_run() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #5 0x00007f9827f6a71d in thread_native_entry(Thread*) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #6 0x00007f98292a2dc5 in start_thread () from /lib64/libpthread.so.0 #7 0x00007f9828dcf1ed in clone () from /lib64/libc.so.6 Thread 16 (Thread 0x7f97e5851700 (LWP 23818)): #0 0x00007f98292a66d5 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0 #1 0x00007f9827f7939b in os::PlatformEvent::park() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #2 0x00007f9827ec08f0 in Monitor::IWait(Thread*, long) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #3 0x00007f9827ec4237 in Monitor::wait(bool, long, bool) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #4 0x00007f9827775be2 in G1ConcurrentRefineThread::wait_for_completed_buffers() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #5 0x00007f9827775f1f in G1ConcurrentRefineThread::run_service() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #6 0x00007f982750ad23 in ConcurrentGCThread::run() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #7 0x00007f9828281040 in Thread::call_run() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #8 0x00007f9827f6a71d in thread_native_entry(Thread*) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #9 0x00007f98292a2dc5 in start_thread () from /lib64/libpthread.so.0 #10 0x00007f9828dcf1ed in clone () from /lib64/libc.so.6 Thread 15 (Thread 0x7f97e5750700 (LWP 23819)): #0 0x00007f98292a66d5 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0 #1 0x00007f9827f7939b in os::PlatformEvent::park() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #2 0x00007f9827ec08f0 in Monitor::IWait(Thread*, long) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #3 0x00007f9827ec4237 in Monitor::wait(bool, long, bool) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #4 0x00007f98281e4bf1 in SuspendibleThreadSet::join() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #5 0x00007f9827809879 in G1YoungRemSetSamplingThread::run_service() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #6 0x00007f982750ad23 in ConcurrentGCThread::run() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #7 0x00007f9828281040 in Thread::call_run() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #8 0x00007f9827f6a71d in thread_native_entry(Thread*) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #9 0x00007f98292a2dc5 in start_thread () from /lib64/libpthread.so.0 #10 0x00007f9828dcf1ed in clone () from /lib64/libc.so.6 Thread 14 (Thread 0x7f97e4d73700 (LWP 23820)): #0 0x00007f98292a66d5 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0 #1 0x00007f9827f7939b in os::PlatformEvent::park() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #2 0x00007f9827ec08f0 in Monitor::IWait(Thread*, long) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #3 0x00007f9827ec4237 in Monitor::wait(bool, long, bool) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #4 0x00007f98280edfee in SafepointSynchronize::begin() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #5 0x00007f982838defd in VMThread::loop() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #6 0x00007f982838e543 in VMThread::run() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #7 0x00007f9828281040 in Thread::call_run() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #8 0x00007f9827f6a71d in thread_native_entry(Thread*) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #9 0x00007f98292a2dc5 in start_thread () from /lib64/libpthread.so.0 #10 0x00007f9828dcf1ed in clone () from /lib64/libc.so.6 Thread 13 (Thread 0x7f97e4c72700 (LWP 23821)): #0 0x00007f98292a66d5 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0 #1 0x00007f9827f7939b in os::PlatformEvent::park() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #2 0x00007f9827ec08f0 in Monitor::IWait(Thread*, long) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #3 0x00007f9827ec446f in Monitor::wait(bool, long, bool) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #4 0x00007f9827ad14de in JVM_WaitForReferencePendingList () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #5 0x00007f9808b845eb in ?? () #6 0x00007f97e4c71828 in ?? () #7 0x00007f97e4c717d8 in ?? () #8 0x0000000000000000 in ?? () Thread 12 (Thread 0x7f97e4b71700 (LWP 23822)): #0 0x00007f98292a66d5 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0 #1 0x00007f9827f7939b in os::PlatformEvent::park() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #2 0x00007f9827f17f6d in ObjectMonitor::wait(long, bool, Thread*) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #3 0x00007f9828208673 in ObjectSynchronizer::wait(Handle, long, Thread*) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #4 0x00007f9827ac4dd4 in JVM_MonitorWait () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #5 0x00007f9808b845eb in ?? () #6 0x00007f9820201800 in ?? () #7 0x00007f9827da5f29 in Thread::current() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #8 0x00007f9808b74fb3 in ?? () #9 0x0000000000000000 in ?? () Thread 11 (Thread 0x7f97e4a70700 (LWP 23823)): #0 0x00007f98292a8790 in sem_wait () from /lib64/libpthread.so.0 #1 0x00007f98280fc134 in PosixSemaphore::wait() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #2 0x00007f9827f6398f in os::signal_wait() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #3 0x00007f9827f53908 in signal_thread_entry(JavaThread*, Thread*) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #4 0x00007f98282799cf in JavaThread::thread_main_inner() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #5 0x00007f98282838fc in JavaThread::run() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #6 0x00007f9828281040 in Thread::call_run() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #7 0x00007f9827f6a71d in thread_native_entry(Thread*) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #8 0x00007f98292a2dc5 in start_thread () from /lib64/libpthread.so.0 #9 0x00007f9828dcf1ed in clone () from /lib64/libc.so.6 Thread 10 (Thread 0x7f97e496f700 (LWP 23824)): #0 0x00007f98292a66d5 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0 #1 0x00007f9827f7939b in os::PlatformEvent::park() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #2 0x00007f9827ebf900 in Monitor::ILock(Thread*) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #3 0x00007f9827ec308b in Monitor::lock_without_safepoint_check() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #4 0x00007f98280e8f09 in SafepointSynchronize::block(JavaThread*) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #5 0x00007f9827ec4bbb in Monitor::wait(bool, long, bool) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #6 0x00007f98274d011a in CompileQueue::get() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #7 0x00007f98274d9d1e in CompileBroker::compiler_thread_loop() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #8 0x00007f98282799cf in JavaThread::thread_main_inner() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #9 0x00007f98282838fc in JavaThread::run() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #10 0x00007f9828281040 in Thread::call_run() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #11 0x00007f9827f6a71d in thread_native_entry(Thread*) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #12 0x00007f98292a2dc5 in start_thread () from /lib64/libpthread.so.0 #13 0x00007f9828dcf1ed in clone () from /lib64/libc.so.6 Thread 9 (Thread 0x7f97e486e700 (LWP 23825)): #0 0x00007f98292a66d5 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0 #1 0x00007f9827f7939b in os::PlatformEvent::park() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #2 0x00007f9827ebf900 in Monitor::ILock(Thread*) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #3 0x00007f9827ec308b in Monitor::lock_without_safepoint_check() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #4 0x00007f98280e8f09 in SafepointSynchronize::block(JavaThread*) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #5 0x00007f9827ec3b4f in Monitor::lock(Thread*) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #6 0x00007f982734a734 in ciEnv::get_klass_by_name_impl(ciKlass*, constantPoolHandle const&, ciSymbol*, bool) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #7 0x00007f98273b8199 in ciSignature::ciSignature(ciKlass*, constantPoolHandle const&, ciSymbol*) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #8 0x00007f9827374163 in ciMethod::ciMethod(methodHandle const&, ciInstanceKlass*) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #9 0x00007f982739df75 in ciObjectFactory::create_new_metadata(Metadata*) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #10 0x00007f982739e93f in ciObjectFactory::get_metadata(Metadata*) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #11 0x00007f9827349cad in ciEnv::get_method_from_handle(Method*) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #12 0x00007f98274d8d12 in CompileBroker::invoke_compiler_on_method(CompileTask*) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #13 0x00007f98274d9f18 in CompileBroker::compiler_thread_loop() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #14 0x00007f98282799cf in JavaThread::thread_main_inner() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #15 0x00007f98282838fc in JavaThread::run() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #16 0x00007f9828281040 in Thread::call_run() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #17 0x00007f9827f6a71d in thread_native_entry(Thread*) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #18 0x00007f98292a2dc5 in start_thread () from /lib64/libpthread.so.0 #19 0x00007f9828dcf1ed in clone () from /lib64/libc.so.6 Thread 8 (Thread 0x7f97e476d700 (LWP 23826)): #0 0x00007f98292a6a82 in pthread_cond_timedwait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0 #1 0x00007f9827f79677 in os::PlatformEvent::park(long) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #2 0x00007f9827ec076b in Monitor::IWait(Thread*, long) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #3 0x00007f9827ec4237 in Monitor::wait(bool, long, bool) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #4 0x00007f98281ea7df in NMethodSweeper::sweeper_loop() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #5 0x00007f98282799cf in JavaThread::thread_main_inner() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #6 0x00007f98282838fc in JavaThread::run() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #7 0x00007f9828281040 in Thread::call_run() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #8 0x00007f9827f6a71d in thread_native_entry(Thread*) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #9 0x00007f98292a2dc5 in start_thread () from /lib64/libpthread.so.0 #10 0x00007f9828dcf1ed in clone () from /lib64/libc.so.6 Thread 7 (Thread 0x7f97e466c700 (LWP 23827)): #0 0x00007f98292a66d5 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0 #1 0x00007f9827f7939b in os::PlatformEvent::park() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #2 0x00007f9827ec08f0 in Monitor::IWait(Thread*, long) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #3 0x00007f9827ec4237 in Monitor::wait(bool, long, bool) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #4 0x00007f98280fd337 in ServiceThread::service_thread_entry(JavaThread*, Thread*) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #5 0x00007f98282799cf in JavaThread::thread_main_inner() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #6 0x00007f98282838fc in JavaThread::run() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #7 0x00007f9828281040 in Thread::call_run() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #8 0x00007f9827f6a71d in thread_native_entry(Thread*) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #9 0x00007f98292a2dc5 in start_thread () from /lib64/libpthread.so.0 #10 0x00007f9828dcf1ed in clone () from /lib64/libc.so.6 Thread 6 (Thread 0x7f97e456b700 (LWP 23828)): #0 0x00007f98292a6a82 in pthread_cond_timedwait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0 #1 0x00007f9827f79677 in os::PlatformEvent::park(long) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #2 0x00007f9827ec076b in Monitor::IWait(Thread*, long) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #3 0x00007f9827ec4237 in Monitor::wait(bool, long, bool) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #4 0x00007f982827648b in WatcherThread::sleep() const () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #5 0x00007f9828276602 in WatcherThread::run() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #6 0x00007f9828281040 in Thread::call_run() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #7 0x00007f9827f6a71d in thread_native_entry(Thread*) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #8 0x00007f98292a2dc5 in start_thread () from /lib64/libpthread.so.0 #9 0x00007f9828dcf1ed in clone () from /lib64/libc.so.6 Thread 5 (Thread 0x7f97d5fff700 (LWP 23830)): #0 0x00007f98292a66d5 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0 #1 0x00007f9827f7939b in os::PlatformEvent::park() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #2 0x00007f9827ebf900 in Monitor::ILock(Thread*) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #3 0x00007f9827ec308b in Monitor::lock_without_safepoint_check() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #4 0x00007f98280e8f09 in SafepointSynchronize::block(JavaThread*) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #5 0x00007f9827f18440 in ObjectMonitor::wait(long, bool, Thread*) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #6 0x00007f9828208673 in ObjectSynchronizer::wait(Handle, long, Thread*) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #7 0x00007f9827ac4dd4 in JVM_MonitorWait () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #8 0x00007f9808b845eb in ?? () #9 0x00007f9828b84168 in vtable for ThreadInVMfromJavaNoAsyncException () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #10 0x00007f9828bab1c8 in vtable for NoHandleMark () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #11 0x00190021586da8f7 in ?? () #12 0x0000000000000000 in ?? () Thread 4 (Thread 0x7f97d5efe700 (LWP 23859)): #0 0x00007f98292a8790 in sem_wait () from /lib64/libpthread.so.0 #1 0x00007f98280fc134 in PosixSemaphore::wait() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #2 0x00007f98283d0639 in SemaphoreGangTaskDispatcher::worker_wait_for_task() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #3 0x00007f98283cfa9b in GangWorker::loop() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #4 0x00007f9828281040 in Thread::call_run() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #5 0x00007f9827f6a71d in thread_native_entry(Thread*) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #6 0x00007f98292a2dc5 in start_thread () from /lib64/libpthread.so.0 #7 0x00007f9828dcf1ed in clone () from /lib64/libc.so.6 Thread 3 (Thread 0x7f97d5dfd700 (LWP 23880)): #0 0x00007f98292a8790 in sem_wait () from /lib64/libpthread.so.0 #1 0x00007f98280fc134 in PosixSemaphore::wait() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #2 0x00007f98283d0639 in SemaphoreGangTaskDispatcher::worker_wait_for_task() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #3 0x00007f98283cfa9b in GangWorker::loop() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #4 0x00007f9828281040 in Thread::call_run() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #5 0x00007f9827f6a71d in thread_native_entry(Thread*) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #6 0x00007f98292a2dc5 in start_thread () from /lib64/libpthread.so.0 #7 0x00007f9828dcf1ed in clone () from /lib64/libc.so.6 Thread 2 (Thread 0x7f97d5cfc700 (LWP 31238)): #0 0x00007f98292a66d5 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0 #1 0x00007f9827f7939b in os::PlatformEvent::park() () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #2 0x00007f9827ec08f0 in Monitor::IWait(Thread*, long) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #3 0x00007f9827ec446f in Monitor::wait(bool, long, bool) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #4 0x00007f982838cb16 in VMThread::execute(VM_Operation*) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #5 0x00007f982712e079 in BiasedLocking::revoke_and_rebias(Handle, bool, Thread*) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #6 0x00007f9828206fdb in ObjectSynchronizer::fast_enter(Handle, BasicLock*, bool, Thread*) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #7 0x00007f9827942050 in InterpreterRuntime::monitorenter(JavaThread*, BasicObjectLock*) () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #8 0x00007f9808ba96be in ?? () #9 0x00007f9828cc5720 in TemplateInterpreter::_active_table () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/lib/server/libjvm.so #10 0x00007f9808ba957a in ?? () #11 0x000000044c0d6e10 in ?? () #12 0x000000044bc7cb78 in ?? () #13 0x00007f97d5cf9c80 in ?? () #14 0x0000000800a303e3 in ?? () #15 0x00007f97d5cf9db8 in ?? () #16 0x00000008003a7a50 in ?? () #17 0x00007f97e4e93ff8 in ?? () #18 0x00000007ffd2edf0 in ?? () #19 0x00000008003aba80 in ?? () #20 0x0000000000000000 in ?? () Thread 1 (Thread 0x7f9829a98740 (LWP 23810)): #0 0x00007f98292a3ef7 in pthread_join () from /lib64/libpthread.so.0 #1 0x00007f98294bfb3d in ContinueInNewThread0 () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/bin/../lib/libjli.so #2 0x00007f98294bc572 in ContinueInNewThread () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/bin/../lib/libjli.so #3 0x00007f98294bdab1 in JLI_Launch () from /scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/bin/../lib/libjli.so #4 0x00000000004009a6 in main ()
18-01-2019

the test expects to get "Unknown diagnostic command", the real problem seems to be a timeout: ---------------------------------------- test InvalidCommandTest.jmx(): success Running DCMD 'asdf' through 'MainClassJcmdExecutor' Executing command '[/scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/bin/jcmd, com.sun.javatest.regtest.agent.MainWrapper, asdf]' Timeout refired 480 times ----------System.err:(0/0)---------- ... test result: Error. Program `/scratch/opt/mach5/mesos/work_dir/jib-master/install/jdk13-jdk.168/linux-x64-debug.jdk/jdk-13/fastdebug/bin/java' timed out (timeout set to 480000ms, elapsed time including timeout handling was 932150ms).
18-01-2019