summaryrefslogtreecommitdiff
path: root/test/pending/run/hashCodeDistribution.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/run/hashCodeDistribution.scala')
-rw-r--r--test/pending/run/hashCodeDistribution.scala17
1 files changed, 0 insertions, 17 deletions
diff --git a/test/pending/run/hashCodeDistribution.scala b/test/pending/run/hashCodeDistribution.scala
deleted file mode 100644
index 5be9d1db6d..0000000000
--- a/test/pending/run/hashCodeDistribution.scala
+++ /dev/null
@@ -1,17 +0,0 @@
-// See ticket #2537.
-object Test {
- case class C(x: Int, y: Int) { }
- val COUNT = 300
- val totalCodes = COUNT * COUNT
-
- def main (args: Array[String]) = {
- val hashCodes =
- for (x <- 0 until COUNT; y <- 0 until COUNT) yield C(x,y).hashCode
-
- val uniques = hashCodes.distinct
- val collisionRate = (totalCodes - uniques.size) * 1000 / totalCodes
-
- assert(collisionRate < 5, "Collision rate too high: %d / 1000".format(collisionRate))
- // println("collisionRate = %d / 1000".format(collisionRate))
- }
-} \ No newline at end of file