summaryrefslogtreecommitdiff
path: root/test/files
Commit message (Collapse)AuthorAgeFilesLines
* Fixed typo in error message. No review.Martin Odersky2010-04-232-3/+3
|
* Fixed implicits problem in specs; Manifest[Clas...Martin Odersky2010-04-231-0/+5
| | | | | | Fixed implicits problem in specs; Manifest[Class[_]] can now be generated. review by dubochet.
* Reverted change of Reactor.exceptionHandler's t...Philipp Haller2010-04-221-1/+1
| | | | | | Reverted change of Reactor.exceptionHandler's type of see r21650. Review by plocinic.
* Reactor.exceptionHandler is defined on Throwabl...Philipp Haller2010-04-226-15/+11
| | | | | | | Reactor.exceptionHandler is defined on Throwable instead of Exception. Fixes potential problem with visibility of changes to a field. Review by plocinic.
* Fixed bug in update method visibility which cau...Paul Phillips2010-04-211-0/+15
| | | | | | | Fixed bug in update method visibility which caused x += y not to find x's update method when defined generically. Closes #3278. Already reviewed by odersky.
* Fix and test case for forwarder duplicate bug.Paul Phillips2010-04-171-0/+14
|
* Added a test to make sure distinct preserves or...Paul Phillips2010-04-162-0/+16
| | | | | Added a test to make sure distinct preserves ordering. No review
* Improved @tailrec error messages to specify the...Paul Phillips2010-04-153-22/+55
| | | | | | | Improved @tailrec error messages to specify the reason. In the process fixed old bug involving tail call transformation. Closes #3275, #2018. Review by dragos.
* Removed a bunch of -Y warning options.Paul Phillips2010-04-153-3/+3
| | | | | | | back in the form of a compiler plugin. Also promoted -Yfatal-warnings to -Xfatal-warnings: this is key to writing tests which involve warnings and should be at least semi-supported. Closes #3300, no review.
* Disabled failing json test.Martin Odersky2010-04-131-4/+4
|
* Made the icode reader more resilient to errors.Iulian Dragos2010-04-1315-71/+766
| | | | | | | symbol does not cause any crashes, but the method using an unknown symbol will not be used for inlining. Resurrected tests, removed spec-matrix for the moment. No review.
* Some mopping up in equality.Paul Phillips2010-04-131-0/+41
| | | | | | way equals was being handled, and hammered it out. New ==/## tests which covers all types and values. Review by odersky.
* A redblack tree scalacheck test contributed by ...Paul Phillips2010-04-131-0/+157
| | | | | A redblack tree scalacheck test contributed by dcsobral. No review.
* Hardened actor tests. No review.Philipp Haller2010-04-1329-4/+319
|
* closes #3241 and improves serialization of hash...Tiark Rompf2010-04-133-3/+27
| | | | | | closes #3241 and improves serialization of hash tries. review by community.
* Disabling what I think are the last two failing...Paul Phillips2010-04-124-101/+0
| | | | | | | | | | | | | | | | Disabling what I think are the last two failing tests, one each of the two leading bugs among those we've seen here today on testing theater: "could not find toMap: (x$1: scala.collection.TraversableOnce,x$2: Predef$<:<)" and "scala.tools.nsc.symtab.Types$TypeError: method react cannot be accessed in java.lang.Object with scala.actors.Reactor[Any] No review but hey lets' see if we can re-enable these tests soonish.
* Disabled test that hangs when actors package is...Philipp Haller2010-04-122-85/+0
| | | | | | Disabled test that hangs when actors package is compiled with specialization. Review by dragos.
* changed testfile, to satisfy new diff algo (whi...Martin Odersky2010-04-121-1/+1
| | | | | | changed testfile, to satisfy new diff algo (which should be reverted IMO). review by extempore.
* Another test for see #2017. No review.Philipp Haller2010-04-122-0/+50
|
* Closes #3224. Review by retronym.Martin Odersky2010-04-122-0/+36
|
* Disabling some more tests which crash under -op...Paul Phillips2010-04-125-564/+0
| | | | | Disabling some more tests which crash under -optimise. No review.
* Disabled the test which is hanging the -optimis...Paul Phillips2010-04-122-16/+0
| | | | | Disabled the test which is hanging the -optimise run. No review.
* Fixed some position issues and build manager test.Iulian Dragos2010-04-111-1/+1
|
* Fix test with new specialized output, no review.Paul Phillips2010-04-091-0/+1
|
* Turn on specialization by default. No review.Iulian Dragos2010-04-0924-24/+0
|
* Changed the syntax of the specialized annotation:Iulian Dragos2010-04-092-2/+2
| | | | | | | | | instead of a flaky string, it now takes a repeated parameter list of primitive types: @specialized("Int, Double") becomes @specialized(Int, Double). No review.
* Companion objects of primitive types are now va...Iulian Dragos2010-04-094-14/+0
| | | | | | | | | Companion objects of primitive types are now values. Term 'scala.Int' resolves in bytecode to an instance of 'scala.runtime.Int'. This is the first step towards replacing strings in @specialized with a proper list of types, so instead of @specialized("Int, Float") one will write @specialized(Int, Float). Review by odersky.
* close #3207. review by oderskyLukas Rytz2010-04-091-0/+21
|
* Fix and test for Iterator corner case.Paul Phillips2010-04-082-0/+11
|
* Gave Stream a lazy withFilter implementation.Paul Phillips2010-04-072-0/+16
| | | | | | | can have a collection containing all the even numbers in the universe and still be home in time for tea. Threw in some Stream cleanups for free. Closes #3265, review by community.
* Forgot to add scalacheck test for #2535.Aleksandar Pokopec2010-04-061-0/+205
|
* Optimized toArray for ArrayOps and WrappedArrays.Martin Odersky2010-04-065-19/+14
|
* As a brief diversion from real work, implemente...Paul Phillips2010-04-067-7/+7
| | | | | | | | | As a brief diversion from real work, implemented Damerau–Levenshtein and ran it on trunk to elicit obvious misspellings. Unfortunately they're mostly in places like compiler comments which real people never see, but I fixed them anyway. All those English Lit majors who peruse our sources are sure to be pleased. No review.
* Fix for the partest task to fail the build when...Paul Phillips2010-04-066-9/+9
| | | | | | | | Fix for the partest task to fail the build when a test fails, and fixes for 2/3 of the quietly failing tests. I'm not quite sure what to do about the view ones, it doesn't look like a simple rename is going to cut it, so: review by odersky.
* If I work on this patch any longer without chec...Paul Phillips2010-04-05194-2366/+87
| | | | | | | | | | | | | | | | 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.]
* improved cps transform of partial functions.Tiark Rompf2010-04-032-0/+17
|
* closes #3242. review by community.Tiark Rompf2010-04-023-0/+84
|
* close #3178. review by communityLukas Rytz2010-04-011-0/+8
|
* close #3183. review by communityLukas Rytz2010-03-311-0/+19
|
* close #3222. review by communityLukas Rytz2010-03-312-0/+22
|
* closes #3203, overriding more of the Traversabl...Tiark Rompf2010-03-311-5/+5
| | | | | | | closes #3203, overriding more of the TraversableLike methods. also tightened access privileges to internal fields and methods. review by community.
* Closes #2386 by requiring class manifests for a...Martin Odersky2010-03-292-0/+7
| | | | | | Closes #2386 by requiring class manifests for an array element type if a class manifaest for the array type is demanded. Review by dubochet.
* closes 2864.Tiark Rompf2010-03-2910-0/+152
|
* TraversableOnce. Review by odersky.Paul Phillips2010-03-272-10/+4
|
* I think this closes #2433.Martin Odersky2010-03-253-0/+11
|
* While working on partest discovered that Compil...Paul Phillips2010-03-251-2/+1
| | | | | | | | | | | | | | | | | | | While working on partest discovered that CompilerCommand ignores half its constructor arguments and a couple dozen places blithely pass it those arguments as if they're being used. Then there were setups like this: class OfflineCompilerCommand( arguments: List[String], settings: Settings, error: String => Unit, interactive: Boolean) extends CompilerCommand(arguments, new Settings(error), error, false) Hey offline compiler command, why throw away the perfectly good settings you were given? Ever heard 'reduce, reuse, recycle'? How did you ever work... or do you? No review.
* New scalacheck jar because recent Actor changes...Paul Phillips2010-03-251-1/+1
| | | | | | New scalacheck jar because recent Actor changes broke binary compatibility. No review.
* Makes two actor tests deterministic. No review.Philipp Haller2010-03-253-5/+2
|
* Apparently I can't fix a test case to save my l...Paul Phillips2010-03-241-1/+1
| | | | | Apparently I can't fix a test case to save my life. No review.
* Fixed a test case I broke with the collect rename.Paul Phillips2010-03-241-3/+3
|