summaryrefslogtreecommitdiff
path: root/test/files/run/bitsets.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2013-04-23 19:39:27 -0700
committerPaul Phillips <paulp@improving.org>2013-04-23 19:39:28 -0700
commitd49d36fcf9434df07a0954e3b45cbb6a91f74619 (patch)
tree7a50a43c201d1e93c8e89ad99a3ff77ae8b535c0 /test/files/run/bitsets.scala
parentadf7f9daf46e60d810b29119df388bc0aad9d3a6 (diff)
downloadscala-d49d36fcf9434df07a0954e3b45cbb6a91f74619.tar.gz
scala-d49d36fcf9434df07a0954e3b45cbb6a91f74619.tar.bz2
scala-d49d36fcf9434df07a0954e3b45cbb6a91f74619.zip
Disabled failing bitset test.
It's a couple orders of magnitude out of whack when a test demands a gigabyte of memory to pass. We might need to start collecting per-test stats to avoid this kind of thing in the future. It's a huge waste of time.
Diffstat (limited to 'test/files/run/bitsets.scala')
-rw-r--r--test/files/run/bitsets.scala7
1 files changed, 6 insertions, 1 deletions
diff --git a/test/files/run/bitsets.scala b/test/files/run/bitsets.scala
index c88782cab7..3bfb8c7ac3 100644
--- a/test/files/run/bitsets.scala
+++ b/test/files/run/bitsets.scala
@@ -115,6 +115,10 @@ object TestMutable3 {
println(s"b0:$b0")
}
+/***
+The memory requirements here are way beyond
+what a test should exercise.
+
object TestMutable4 {
import scala.collection.mutable.BitSet
@@ -127,6 +131,7 @@ object TestMutable4 {
println(bMax == bLarge)
}
+***/
object TestImmutable {
import scala.collection.immutable.BitSet
@@ -203,7 +208,7 @@ object Test extends App {
TestMutable
TestMutable2
TestMutable3
- TestMutable4
+ // TestMutable4
TestImmutable
TestImmutable2
}