Skip to content

Commit

Permalink
8348800: Many serviceability/sa tests failing after JDK-8348239
Browse files Browse the repository at this point in the history
Reviewed-by: shade, kevinw, lmesnik
  • Loading branch information
plummercj committed Jan 28, 2025
1 parent 5e81fa6 commit 98a93e1
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,11 @@ private static synchronized void initialize(TypeDataBase db) {
virtualConstructor.addMapping("NotificationThread", NotificationThread.class);
virtualConstructor.addMapping("StringDedupThread", StringDedupThread.class);
virtualConstructor.addMapping("AttachListenerThread", AttachListenerThread.class);
virtualConstructor.addMapping("DeoptimizeObjectsALotThread", DeoptimizeObjectsALotThread.class);

/* Only add DeoptimizeObjectsALotThread if it is actually present in the type database. */
if (db.lookupType("DeoptimizeObjectsALotThread", false) != null) {
virtualConstructor.addMapping("DeoptimizeObjectsALotThread", DeoptimizeObjectsALotThread.class);
}
}

public Threads() {
Expand Down

0 comments on commit 98a93e1

Please sign in to comment.