summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeoffrey Washburn <geoffrey.washburn@epfl.ch>2008-02-28 13:33:16 +0000
committerGeoffrey Washburn <geoffrey.washburn@epfl.ch>2008-02-28 13:33:16 +0000
commitd01b65f2815078abfd7fcb1c61f8ac1ae0665d68 (patch)
tree03d3eb83068d25b6a00e482a3f6c941bc2d7ee62
parentff089cef43cde47eee058cfaf8f825b8c97264c0 (diff)
downloadscala-d01b65f2815078abfd7fcb1c61f8ac1ae0665d68.tar.gz
scala-d01b65f2815078abfd7fcb1c61f8ac1ae0665d68.tar.bz2
scala-d01b65f2815078abfd7fcb1c61f8ac1ae0665d68.zip
Do not run the test on IdentityHashMap because ...
Do not run the test on IdentityHashMap because of IBM Java 1.6 oddity.
-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])