Skip to content

Commit 54824e2

Browse files
committedSep 28, 2021
Problem list the remaining 4 JDI tests that started to fail with the added support for more debuggee threads being created as vthreads. The failures are all well understood and documented in the problemlist comments.
1 parent fd74727 commit 54824e2

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
 

‎test/hotspot/jtreg/ProblemList-vthread.txt

+19
Original file line numberDiff line numberDiff line change
@@ -549,6 +549,25 @@ vmTestbase/nsk/jdi/stress/serial/forceEarlyReturn002/TestDescription.java
549549

550550
vmTestbase/nsk/jdi/ObjectReference/referringObjects/referringObjects002/referringObjects002.java
551551

552+
###
553+
# The test fails because it tries to call Thread.setDaemon(false) on a vthread, which is not
554+
# supported (vthreads are always daemon). It seems the only reason the test does this is because
555+
# it has a mix of what it refers to as "user and daemon threads", since it wants to test both.
556+
# It should be ok to just skip the setDaemon call for vthreads.
557+
vmTestbase/nsk/jdi/EventRequestManager/stepRequests/stepreq001/TestDescription.java
558+
559+
###
560+
# These 2 tests try to create 10 vthreads and have them all block on a synchornized
561+
# method call, but on some hosts there are not enough cthreads to support pinning
562+
# all 10 vthreads, so the test deadlocks. -Djdk.defaultScheduler.parallelism=<n>
563+
# could be used with the debuggee to ensure there are enough vthreads.
564+
vmTestbase/nsk/jdi/EventRequestManager/stepRequests/stepreq002/TestDescription.java
565+
vmTestbase/nsk/jdi/EventRequestManager/deleteEventRequests/delevtreqs002/TestDescription.java
566+
567+
###
568+
# The test relies on the underlying JVMTI GetObjectMonitorUsage() API, which currently
569+
# does not support vthreads, and will claim the cthread is owner of the monitor.
570+
vmTestbase/nsk/jdi/ObjectReference/owningThread/owningthread002/TestDescription.java
552571

553572
####
554573
## NSK JMX Tests

0 commit comments

Comments
 (0)
Please sign in to comment.