summaryrefslogtreecommitdiff
path: root/test/files/run
Commit message (Collapse)AuthorAgeFilesLines
* fixed headers/comments/svn props, made some pro...michelou2009-09-151-2/+2
| | | | | | fixed headers/comments/svn props, made some progress with serializable classes
* Deprecated case classes inheriting from other c...Paul Phillips2009-09-115-34/+6
| | | | | | Deprecated case classes inheriting from other case classes, and updated all the tests which did so.
* fix #2268Lukas Rytz2009-09-112-0/+11
|
* Massive redesign so that: scala> "hi" == "hi".r...Martin Odersky2009-09-102-0/+23
| | | | | | Massive redesign so that: scala> "hi" == "hi".reverse.reverse gives: res0: Boolean = true Preparing to do similar things to arrays.
* Created plausibly sensible equals and hashCode ...Paul Phillips2009-09-092-3/+2
| | | | | | | | | | Created plausibly sensible equals and hashCode methods in collection.{ Set, Map, Sequence } and made sure that none of the derived collections is getting too excited about doing its own thing and in so doing either breaking equals/hashCode consistency or creating an asymmetric equals (or both.)
* Moved test case for now-fixed #2027 into files.Paul Phillips2009-09-012-0/+7
|
* Fix and test case for #2276.Paul Phillips2009-08-282-0/+32
|
* Test case for #2250, which Martin fixed in r18589.Paul Phillips2009-08-271-0/+12
|
* added manifests to most parts of standard libra...Martin Odersky2009-08-274-4/+8
| | | | | | | added manifests to most parts of standard library which deal with arrays. One test is temporarily disabled, as it shows a deep problem with multi-dimensional arrays (which was present all along).
* Fix and test case for #2241.Paul Phillips2009-08-231-0/+7
|
* The fruit of a bunch of iteration on Iterator.Paul Phillips2009-08-221-0/+37
| | | | | Flexible yet simple/clean API for grouped and sliding.
* Reverted r18344 as it is interacting badly with...Paul Phillips2009-08-211-6/+0
| | | | | Reverted r18344 as it is interacting badly with package objects.
* Second half of fix for #2177. Fixed #2255.Philipp Haller2009-08-192-0/+4
|
* Fixed #2177.Philipp Haller2009-08-192-0/+4
|
* Polished up some disabled tests and returned th...Paul Phillips2009-08-144-0/+209
| | | | | Polished up some disabled tests and returned them to files.
* Test case for #1044.Paul Phillips2009-08-131-0/+4
|
* fixed t1705.Martin Odersky2009-08-101-1/+1
|
* Re-enabled forwarders and moved the formerly fa...Paul Phillips2009-08-032-0/+10
| | | | | | Re-enabled forwarders and moved the formerly failing tests for #363 and #1745 out of pending.
* Fixed #2212.Philipp Haller2009-07-312-0/+13
|
* fixed a bug with defaults reported on mailing listLukas Rytz2009-07-241-0/+7
|
* Fix and test cases for #2184.Paul Phillips2009-07-221-0/+14
|
* Fixed #2176.Philipp Haller2009-07-222-0/+5
|
* Added regression test for #2147.Philipp Haller2009-07-212-0/+10
|
* Test case for bug #1466, which was mysteriously...Paul Phillips2009-07-181-0/+11
| | | | | | Test case for bug #1466, which was mysteriously fixed at some point in the last nine months.
* Fix and test case for #1373.Paul Phillips2009-07-181-0/+6
|
* Removed some identical code from the collection...Paul Phillips2009-07-182-8/+6
| | | | | | | Removed some identical code from the collections classes in hopes of finding some consistency in collections equality. Added more test cases to the sequenceComparisons test.
* A start on a more comprehensive test suite for ...Paul Phillips2009-07-172-0/+124
| | | | | | | | | | | A start on a more comprehensive test suite for sequences. It performs 3600 different tests attempting to exercise the potentially buggy variations of startsWith, endsWith, indexOfSeq, and sameElements. And, a KMP implementation of indexOfSeq which in addition to being a lot faster for definite sized sequences, should give the wrong answer somewhat less frequently.
* Fix and test case for #1141.Paul Phillips2009-07-152-0/+9
|
* Fix and test case for #1110.Paul Phillips2009-07-151-0/+11
|
* Implementation and test cases for canEqual meth...Paul Phillips2009-07-091-0/+23
| | | | | | | Implementation and test cases for canEqual method in case classes. Now the autogenerated equality method inquires with the argument as to whether other.canEqual(this) before returning true.
* Lots of work hardening matching on sequences.Paul Phillips2009-07-071-11/+15
| | | | | | | | | | | | | | | | one long-standing bug which actually had a test case testing its bugginess (which is to say, when I fixed the bug, the test case failed.) This: - def doMatch4(xs:Seq[Char]) = xs match { - case Seq(x, y, _*) => x::y::Nil - case Seq(x, y, z, w) => List(z,w) // redundant! - } ...should never have compiled - which must have been recognized on some level given the "redundant!" comment, but it never made it into neg/.
* Implemented proposed strategy for #1503 and mov...Paul Phillips2009-07-053-2/+18
| | | | | | Implemented proposed strategy for #1503 and moved test case out of pending (and fixed it so it didn't throw a match error.)
* Interim fix and test case for #1434.Paul Phillips2009-07-051-0/+15
|
* Fixes and test cases for #2124 and #2125.Paul Phillips2009-07-054-0/+52
|
* fix #2122, test for #2116Lukas Rytz2009-07-051-1/+2
|
* Creating case classes in preference to passing ...Paul Phillips2009-07-011-0/+19
| | | | | | | | Creating case classes in preference to passing around a variety of inscrutable tuples. And, fix and test case for #1697. There remain serious extractor issues which I hope to have fully diagnosed in the near future.
* minor cleanups for named argsLukas Rytz2009-06-302-0/+2
|
* Applied patches to fix the issues in #2074.Philipp Haller2009-06-303-0/+19
|
* Fixed the fact that reflective calls had logica...Paul Phillips2009-06-261-2/+2
| | | | | | | | Fixed the fact that reflective calls had logical and arithmetic right shift swapped. Modified test case to use a value that doesn't have identical output for both shifts. Grumbled to self that test cases which fail to test are markedly worse than no tests at all.
* named arguments only at top level in () paramet...Lukas Rytz2009-06-252-2/+11
| | | | | named arguments only at top level in () parameters.
* improvements to names / defaults (implicits, ty...Lukas Rytz2009-06-202-1/+51
| | | | | | improvements to names / defaults (implicits, type of defaults, #2064, ...)
* allow using named / default arguments in self- ...Lukas Rytz2009-06-152-2/+44
| | | | | | allow using named / default arguments in self- and super constructor calls. fixes #2050 and #2052.
* - fixed #2057Lukas Rytz2009-06-151-0/+7
| | | | | - Symbol.annotations now first calls .initialize
* Fixed failing test-suite case.Gilles Dubochet2009-06-091-6/+6
|
* removed code for parsing old pickle format.Lukas Rytz2009-06-032-1/+17
|
* named argument disallowed when assignment expre...Lukas Rytz2009-06-022-0/+13
| | | | | | named argument disallowed when assignment expression would typecheck. minor fixe to names / defaults.
* Fix and test for bug 2029.David MacIver2009-06-012-0/+19
|
* big overhaul of annotations implementation.Lukas Rytz2009-05-303-8/+8
|
* Named and default argumentsLukas Rytz2009-05-305-3/+315
| | | | | | | - MethodTypes now have (params: List[Symbol]) - "copy"-methods for case classes - the "copy" object in the compiler is now called "treeCopy"
* Patched up failing test case.Paul Phillips2009-05-281-1/+1
|