From 96a1a9d2f50f27d9b97e7b04c70b7b2bccf2e0cd Mon Sep 17 00:00:00 2001 From: Oli Gillespie Date: Tue, 23 Jun 2026 09:24:30 +0000 Subject: [PATCH] 8386372: Add ConcurrentSkipListMap to map stress test Reviewed-by: vklang --- .../jdk/java/util/concurrent/ConcurrentHashMap/MapLoops.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/jdk/java/util/concurrent/ConcurrentHashMap/MapLoops.java b/test/jdk/java/util/concurrent/ConcurrentHashMap/MapLoops.java index 0f52bc67f08..4a96530e026 100644 --- a/test/jdk/java/util/concurrent/ConcurrentHashMap/MapLoops.java +++ b/test/jdk/java/util/concurrent/ConcurrentHashMap/MapLoops.java @@ -34,7 +34,7 @@ /* * @test * @bug 4486658 - * @summary Exercise multithreaded maps, by default ConcurrentHashMap. + * @summary Exercise multithreaded maps. * Multithreaded hash table test. Each thread does a random walk * though elements of "key" array. On each iteration, it checks if * table includes key. If absent, with probability pinsert it @@ -42,7 +42,8 @@ * it. (pinsert and premove are expressed as percentages to simplify * parsing from command line.) * @library /test/lib - * @run main/timeout=1600 MapLoops + * @run main/timeout=1600 MapLoops java.util.concurrent.ConcurrentHashMap + * @run main/timeout=1600 MapLoops java.util.concurrent.ConcurrentSkipListMap */ import static java.util.concurrent.TimeUnit.MILLISECONDS;