summaryrefslogtreecommitdiff
path: root/test
Commit message (Collapse)AuthorAgeFilesLines
* 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-0/+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.
* Still working on partest.Paul Phillips2010-04-126-0/+112
| | | | | | | | | | | | temporary if considered clutter. ant test.partest ant test.partest-opt They run some recently troublesome partest tests with a low timeout. Logged some more exceptions where the compiler has been dying. Review by phaller.
* Disabled test that hangs when actors package is...Philipp Haller2010-04-122-0/+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-0/+0
| | | | | Disabling some more tests which crash under -optimise. No review.
* Disabled the test which is hanging the -optimis...Paul Phillips2010-04-122-0/+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
|
* Introduces scala.tools.cmd providing command li...Paul Phillips2010-04-111-3/+3
| | | | | | | | | | | | | | | | | | Introduces scala.tools.cmd providing command line tool infrastructure. For a quick look at what can be done, see scala.tools.cmd.Demo For a more involved, potentially eye-straining look, see scala.tools.partest.PartestSpec To experience it through the eyes of Joe Partest User, run test/partest Review by community.
* 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-068-18/+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-05203-238/+97
| | | | | | | | | | | | | | | | 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-034-24/+3
|
* 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-2911-23/+143
|
* 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-252-3/+2
| | | | | | | | | | | | | | | | | | | 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
|
* Adds tests for see #2017.Philipp Haller2010-03-242-0/+54
|
* Addresses see #2017.Philipp Haller2010-03-245-22/+32
|
* Fixed an issue with no-parameter-list methods n...Paul Phillips2010-03-241-0/+2
| | | | | | Fixed an issue with no-parameter-list methods not being elided. No review.
* Fixed the serialization test.Philipp Haller2010-03-241-2/+2
|
* Fix and test case for #3169.Paul Phillips2010-03-231-0/+9
|
* Although it was working fine, a test case for @...Paul Phillips2010-03-233-0/+16
| | | | | | Although it was working fine, a test case for @elidable to make sure that state of affairs continues. No review.
* Added test case for #3186. Closes #3186.Philipp Haller2010-03-232-0/+8
|
* Went ahead and implemented classpaths as descri...Paul Phillips2010-03-231-2/+2
| | | | | | | | | | | | | | | | | | | | | Went ahead and implemented classpaths as described in email to scala-internals on the theory that at this point I must know what I'm doing. ** PUBLIC SERVICE ANNOUNCEMENT ** If your code of whatever kind stopped working with this commit (most likely the error is something like "object scala not found") you can get it working again with either of: passing -usejavacp on the command line set system property "scala.usejavacp" to "true" Either of these will alert scala that you want the java application classpath to be utilized by scala as well. Review by community.
* closes #3199. review by community.Tiark Rompf2010-03-224-0/+33
|
* During my last look at r21224 I noticed what mu...Paul Phillips2010-03-212-0/+14
| | | | | | | | | During my last look at r21224 I noticed what must be a long standing bug in Array.update handling. Fixing this probably never to be noticed corner case (see bug3175.scala) seduced me into drumming out some duplication. At least we got some nice commenting out of it. Review by dubochet.
* Some work on the Array methods as they manifest...Paul Phillips2010-03-202-0/+52
| | | | | | | Some work on the Array methods as they manifest in refinement types: tightening when Array code is generated and also what code is generated. Review by dubochet.
* Half-disabled productElementName until I have t...Paul Phillips2010-03-192-2/+0
| | | | | | | Half-disabled productElementName until I have time to reimplement it more to martin's liking. ("Half" because full disabling is not possible until starr has forgotten about it.) No review.