summaryrefslogtreecommitdiff
path: root/test/files/run/unittest_collection.scala
Commit message (Collapse)AuthorAgeFilesLines
* Cull extraneous whitespace.Paul Phillips2013-09-181-3/+3
| | | | | | | | | | | | | | | | | | | | | One last flurry with the broom before I leave you slobs to code in your own filth. Eliminated all the trailing whitespace I could manage, with special prejudice reserved for the test cases which depended on the preservation of trailing whitespace. Was reminded I cannot figure out how to eliminate the trailing space on the "scala> " prompt in repl transcripts. At least reduced the number of such empty prompts by trimming transcript code on the way in. Routed ConsoleReporter's "printMessage" through a trailing whitespace stripping method which might help futureproof against the future of whitespace diseases. Deleted the up-to-40 lines of trailing whitespace found in various library files. It seems like only yesterday we performed whitespace surgery on the whole repo. Clearly it doesn't stick very well. I suggest it would work better to enforce a few requirements on the way in.
* Begone t1737...Hubert Plociniczak2011-11-021-3/+3
|
* Removes SUnit (long deprecated!) from the stand...Paul Phillips2011-05-191-84/+39
| | | | | | | | | | | | Removes SUnit (long deprecated!) from the standard library. the relatively small number of partest tests in Scala's suite that were still using SUnit now either just use regular asserts, or they print stuff that partest checks with a .check file. Also fixed some bad indentation, removed ancient useless-looking commented-out code, etc. Contributed by Seth Tisue (way to go seth) no review.
* If I work on this patch any longer without chec...Paul Phillips2010-04-051-1/+1
| | | | | | | | | | | | | | | | If I work on this patch any longer without checking in I will go stark raving mad. It is broken up into a couple pieces. This one is the changes to test/. It includes fixing a bunch of tests, removing deprecated constructs, moving jars used by tests to the most specific plausible location rather than having all jars on the classpath of all tests, and some filesystem layout change (continuations get their whole own srcpath.) This would be the world's most tedious review, so let's say no review. [Note: after this commit, I doubt things will build very smoothly until the rest of the partest changes follow. Which should only be seconds, but just in case.]
* Moved disabled tests back into their original p...Antonio Cunei2009-11-061-0/+103
| | | | | | Moved disabled tests back into their original place. Expect 7 tests to fail.
* massive new collections checkin.Martin Odersky2009-05-081-103/+0
|
* speed up ArrayBuffer by replacing BoxedAnyArray...stepancheg2008-06-201-0/+8
| | | | | speed up ArrayBuffer by replacing BoxedAnyArray with raw JVM array
* fixed bugs in ListBuffer and ArrayBuffer, added...Burak Emir2006-10-041-0/+95
fixed bugs in ListBuffer and ArrayBuffer, added unit test