summaryrefslogtreecommitdiff
path: root/test/files/specialized
diff options
context:
space:
mode:
authorIulian Dragos <jaguarul@gmail.com>2011-01-19 21:52:08 +0000
committerIulian Dragos <jaguarul@gmail.com>2011-01-19 21:52:08 +0000
commitf3711ed324ddea02873cd3aa4c9eb8d306257662 (patch)
tree0445c6705b3927677014746db5d97e4d9c41abaa /test/files/specialized
parent8e59e56216f0d8ed7513eb980a002899f2473483 (diff)
downloadscala-f3711ed324ddea02873cd3aa4c9eb8d306257662.tar.gz
scala-f3711ed324ddea02873cd3aa4c9eb8d306257662.tar.bz2
scala-f3711ed324ddea02873cd3aa4c9eb8d306257662.zip
Removed the probe for integers in spec-matrix.
Diffstat (limited to 'test/files/specialized')
-rw-r--r--test/files/specialized/spec-matrix.check1
-rw-r--r--test/files/specialized/spec-matrix.scala2
2 files changed, 1 insertions, 2 deletions
diff --git a/test/files/specialized/spec-matrix.check b/test/files/specialized/spec-matrix.check
index b891d87a81..5ec3e84597 100644
--- a/test/files/specialized/spec-matrix.check
+++ b/test/files/specialized/spec-matrix.check
@@ -1,3 +1,2 @@
251437.0
Boxed doubles: 1
-Boxed integers: 4081501
diff --git a/test/files/specialized/spec-matrix.scala b/test/files/specialized/spec-matrix.scala
index 9962af2351..fb3ac91481 100644
--- a/test/files/specialized/spec-matrix.scala
+++ b/test/files/specialized/spec-matrix.scala
@@ -33,7 +33,7 @@ object Test {
val p = mult(m, n)
println(p(0, 0))
println("Boxed doubles: " + runtime.BoxesRunTime.doubleBoxCount)
- println("Boxed integers: " + runtime.BoxesRunTime.integerBoxCount)
+// println("Boxed integers: " + runtime.BoxesRunTime.integerBoxCount)
}
def randomMatrix(n: Int, m: Int) = {