summaryrefslogtreecommitdiff
path: root/test/files/scalacheck/si4147.scala
Commit message (Collapse)AuthorAgeFilesLines
* Use t- prefix instead of si- prefix for test filesDen Shabalin2013-12-161-68/+0
|
* Prepare upgrade to scalacheck 1.11.Adriaan Moors2013-11-201-3/+1
| | | | | | | | | | | | | | | | Our scalacheck tests now compile against 1.10.1 and 1.11.0. They pass on 1.10.1, but fail on 1.11.0. Once (that)[https://github.com/rickynils/scalacheck/issues/79]'s fixed, and 1.11.1 released, we should be able to upgrade to it by simply changing scalacheck.version.number in versions.properties. The changes are mostly removing dead code (e.g., consolereporter business). Of interest: the type ascription for `oneOf`. I haven't quite investigated, but something seems to have changed between 1.10.1 and 1.11.0 that caused a different overload to be picked without the type ascription. Probably not a scalac bug, just a scalacheck api change.
* SI-7590 TreeSet should fail fast if Ordering is nullSimon Ochsenreither2013-06-251-1/+4
| | | | | | | | | | While migrating scala.tools.nsc.util.TreeSet to scala.collection.mutable.TreeSet, I messed up initialization order and realized that TreeSet accepts null as an Ordering and only fails much later. This change makes mutable.TreeSet and immutable.TreeSet fail immediately.
* Add mutable tree sets to the standard library.aleksandar2012-01-121-0/+67
This implementation is based on AVL trees. The current implementation is contributed by Lucien Pereira. Fixes #4147.