summaryrefslogtreecommitdiff
path: root/test/files/run/hashCodeBoxesRunTime.scala
diff options
context:
space:
mode:
authorDominik Gruntz <dominik.gruntz@fhnw.ch>2012-05-09 15:01:25 +0200
committerDominik Gruntz <dominik.gruntz@fhnw.ch>2012-05-09 15:01:25 +0200
commitb5919100e785df58bde35bb24abe9d60b4da08a2 (patch)
treebfc40fc70e04624bf65d60a540b628cc934bba07 /test/files/run/hashCodeBoxesRunTime.scala
parent58bb2d1bd2000ac3aa2c64b6c5dc56c91e911860 (diff)
downloadscala-b5919100e785df58bde35bb24abe9d60b4da08a2.tar.gz
scala-b5919100e785df58bde35bb24abe9d60b4da08a2.tar.bz2
scala-b5919100e785df58bde35bb24abe9d60b4da08a2.zip
removes redundant hash implementation from BoxesRunTime.java
Diffstat (limited to 'test/files/run/hashCodeBoxesRunTime.scala')
-rw-r--r--test/files/run/hashCodeBoxesRunTime.scala28
1 files changed, 0 insertions, 28 deletions
diff --git a/test/files/run/hashCodeBoxesRunTime.scala b/test/files/run/hashCodeBoxesRunTime.scala
deleted file mode 100644
index 081a73376e..0000000000
--- a/test/files/run/hashCodeBoxesRunTime.scala
+++ /dev/null
@@ -1,28 +0,0 @@
-// This only tests direct access to the methods in BoxesRunTime,
-// not the whole scheme.
-object Test
-{
- import java.{ lang => jl }
- import scala.runtime.BoxesRunTime.{ hashFromNumber, hashFromObject }
-
- def allSame[T](xs: List[T]) = assert(xs.distinct.size == 1, "failed: " + xs)
-
- def mkNumbers(x: Int): List[Number] =
- List(x.toByte, x.toShort, x, x.toLong, x.toFloat, x.toDouble)
-
- def testLDF(x: Long) = allSame(List[Number](x, x.toDouble, x.toFloat) map hashFromNumber)
-
- def main(args: Array[String]): Unit = {
- List(Byte.MinValue, -1, 0, 1, Byte.MaxValue) foreach { n =>
- val hashes = mkNumbers(n) map hashFromNumber
- allSame(hashes)
- if (n >= 0) {
- val charCode = hashFromObject(n.toChar: Character)
- assert(charCode == hashes.head)
- }
- }
-
- testLDF(Short.MaxValue.toLong)
- testLDF(Short.MinValue.toLong)
- }
-}