summaryrefslogtreecommitdiff
path: root/test/files/run
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2010-06-27 01:35:11 +0000
committerPaul Phillips <paulp@improving.org>2010-06-27 01:35:11 +0000
commitdee314b7bc988f5eb3818a3d5ed28933c6539e53 (patch)
tree9e44cc70908bb7a2f2b15ec0d1ceb4832906be18 /test/files/run
parent5b8cba103c84b32617be58f34711b23f8fc09309 (diff)
downloadscala-dee314b7bc988f5eb3818a3d5ed28933c6539e53.tar.gz
scala-dee314b7bc988f5eb3818a3d5ed28933c6539e53.tar.bz2
scala-dee314b7bc988f5eb3818a3d5ed28933c6539e53.zip
Removed unfinished Jenkins hashcode for final.
Diffstat (limited to 'test/files/run')
-rw-r--r--test/files/run/hashCodeDistribution.flags1
-rw-r--r--test/files/run/hashCodeDistribution.scala17
2 files changed, 0 insertions, 18 deletions
diff --git a/test/files/run/hashCodeDistribution.flags b/test/files/run/hashCodeDistribution.flags
deleted file mode 100644
index 7806652d4d..0000000000
--- a/test/files/run/hashCodeDistribution.flags
+++ /dev/null
@@ -1 +0,0 @@
--Yjenkins-hashCodes \ No newline at end of file
diff --git a/test/files/run/hashCodeDistribution.scala b/test/files/run/hashCodeDistribution.scala
deleted file mode 100644
index 5be9d1db6d..0000000000
--- a/test/files/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