summaryrefslogtreecommitdiff
path: root/test/files/run/t0485.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t0485.scala')
-rw-r--r--test/files/run/t0485.scala4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/files/run/t0485.scala b/test/files/run/t0485.scala
index c114f15ce4..9e2017aacc 100644
--- a/test/files/run/t0485.scala
+++ b/test/files/run/t0485.scala
@@ -26,7 +26,9 @@ object testMap {
}
}
test(new jcl.HashMap[Int, Int])
- test(new jcl.IdentityHashMap[Int, Int])
+ // Clone on IdentityHashMap of java-ibm-1.6 behaves differently than all others
+ // Therefore, for now we will not perform this test on it.
+ // test(new jcl.IdentityHashMap[Int, Int])
test(new jcl.LinkedHashMap[Int, Int])
test(new jcl.TreeMap[Int, Int])
test(new jcl.WeakHashMap[Int, Int])