summaryrefslogtreecommitdiff
path: root/test/files/jvm
Commit message (Collapse)AuthorAgeFilesLines
* Another attempt for #1591.Hubert Plociniczak2010-10-011-0/+26
|
* Revert changes related to #1591. no review.Hubert Plociniczak2010-09-291-26/+0
|
* Cleaning up the contents of test.Paul Phillips2010-09-281-0/+0
| | | | | | | | | | | including "CheckEither", written against scalacheck 1.2 in the year 471 AD. Removed all the duplicates I could find, mostly between pending and files. Renamed a bunch of tests so they wouldn't look like likely duplicates next time around. Nominated somebody else to do this once in a while. No review.
* Closes #1591.Hubert Plociniczak2010-09-221-0/+26
|
* Some tweaks to ListSet to make it less patholog...Paul Phillips2010-09-171-2/+2
| | | | | | | | | | | | | | | Some tweaks to ListSet to make it less pathological in its outlook. We can see some modest improvements in run time and answer quality via the enclosed test case: // with this patch: 2.250s elapsed, assertions pass. // without this patch: 51.441s elapsed, and it's a mercy killing: java.lang.StackOverflowError at scala.collection.immutable.ListSet$Node.contains(ListSet.scala:117) at scala.collection.immutable.ListSet$Node.contains(ListSet.scala:117) Closes #3822, review by community.
* Fixed buggy test case. Closes #3551. No review.Philipp Haller2010-07-121-3/+9
|
* Tracked down why the jvm/natives.scala fails fo...Paul Phillips2010-06-042-1/+1
| | | | | | | Tracked down why the jvm/natives.scala fails for me and apparently not anyone else. Rebuilt libnatives.jnlib to accomodate x86-64, and it seems to pass. No review.
* Restored Source factories to a form source comp...Paul Phillips2010-06-031-1/+1
| | | | | | | | | Restored Source factories to a form source compatible with 2.7.7. No default implicit arguments, now low priority saves the day with a low priority codec which io.Codec offers as last resort. Dropped the line separator argument to getLines and made it act in a separator agnostic way (any of \r\n, \r, or \n is a separator.) Review by community.
* Re-enabled a number of previously disabled tests;Antonio Cunei2010-05-2812-0/+208
| | | | | according to my tests, they all currently work.
* Addresses see #3470 by adding a method Reactor....Philipp Haller2010-05-252-0/+33
| | | | | Addresses see #3470 by adding a method Reactor.restart. Review by rompf.
* Removed some flotsam which should have been rem...Paul Phillips2010-05-213-16/+0
| | | | | | | | Removed some flotsam which should have been removed when I rolled back partest. (We ended up with two copies of the methvsfield test, one in a subdir and one not.) I would suppose it is responsible for #3464 but I don't know for certain. No review.
* close #3415.Lukas Rytz2010-05-102-0/+7
|
* Closes #3407. Closes #3412. Review by plocinic.Philipp Haller2010-05-096-0/+119
|
* close #3400. no reviewLukas Rytz2010-05-072-0/+21
|
* Rolled partest back to r21328.Paul Phillips2010-05-0611-4/+76
| | | | | | | | changes necessary to plug it back in while preserving everything which has happened since then in tests and such, but we should be the lookout for overreversion. Review by phaller (but as a formality, I don't think it requires direct review.)
* revert the revert of r21791 (fix constructor pa...Lukas Rytz2010-05-052-6/+36
| | | | | | revert the revert of r21791 (fix constructor parameter annotations). close #3390. together with a new starr it builds. no review.
* revert commit that probably broke the build due...Adriaan Moors2010-05-042-36/+6
| | | | | | | revert commit that probably broke the build due to a bug in closure elimination revert commit that reverted the commit that probably didn't break the build
* fix and test where constructor parameter annota...Lukas Rytz2010-05-042-6/+36
| | | | | fix and test where constructor parameter annotations end up. no review
* UncaughtException is now a case class (see #2017).Philipp Haller2010-04-291-7/+2
|
* Closes #3365.Philipp Haller2010-04-282-0/+70
|
* Closes #3356.Philipp Haller2010-04-252-0/+60
|
* close #3338, close #3334, close #3345.Lukas Rytz2010-04-251-0/+3
|
* 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.
* Made the icode reader more resilient to errors.Iulian Dragos2010-04-134-0/+172
| | | | | | | 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.
* Hardened actor tests. No review.Philipp Haller2010-04-1329-4/+319
|
* closes #3241 and improves serialization of hash...Tiark Rompf2010-04-131-3/+3
| | | | | | closes #3241 and improves serialization of hash tries. review by community.
* Disabling what I think are the last two failing...Paul Phillips2010-04-122-87/+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.
* Another test for see #2017. No review.Philipp Haller2010-04-122-0/+50
|
* Fix for the partest task to fail the build when...Paul Phillips2010-04-061-1/+1
| | | | | | | | 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-0522-77/+15
| | | | | | | | | | | | | | | | 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.]
* Makes two actor tests deterministic. No review.Philipp Haller2010-03-253-5/+2
|
* Adds tests for see #2017.Philipp Haller2010-03-242-0/+54
|
* Addresses see #2017.Philipp Haller2010-03-245-22/+32
|
* Fixed the serialization test.Philipp Haller2010-03-241-2/+2
|
* Closes #2827. Review by community.Philipp Haller2010-03-192-0/+17
|
* Closes #3185. Review by plocinic.Philipp Haller2010-03-172-0/+44
|
* new immutable.HashSet. review by community.Tiark Rompf2010-03-151-1/+1
|
* New attempt at fixing the tests. No review.Philipp Haller2010-03-093-133/+60
|
* Made actor-getstate test more robust. No review.Philipp Haller2010-03-091-20/+20
|
* Closes #3102.Philipp Haller2010-03-082-0/+28
|
* Reactor now has type parameter.Philipp Haller2010-03-088-13/+88
|
* - new immutable HashMap implementation based on...Tiark Rompf2010-03-071-1/+1
| | | | | | | | | - new immutable HashMap implementation based on a hash trie. this is the first iteration, more optimizations will be added later. - updated test cases to reflect new ordering of elements - made Map.empty and Set.empty singletons, deprecating classes Map.EmptyMap and Set.EmptySet Review by extempore, odersky.
* Clean-ups in scheduler hierarchy.Philipp Haller2010-03-049-1/+325
|
* Enabled scalacheck tests.Paul Phillips2010-03-011-2/+2
| | | | | | | | what must be legacy scalatest.* properties to partest.*, boldly assuming that the fact that partest is pretty much unusable outside of scalac means there are no users outside of scalac who might be disrupted by eliminating old property names. Review by community.
* Quite a lot more work on XML equality than I ca...Paul Phillips2010-02-263-33/+31
| | | | | | | | | | | | | | | | | | Quite a lot more work on XML equality than I can properly justify spending time on, but you know how it is once you get started on something. This commit will likely break some code out there in the world but this is impossible to avoid if we are to achieve sane equality in trunk. For anyone who was relying upon the 2.7 equality behavior for scala.xml.* classes, using "xml_==" instead of "==" for comparisons will restore the old behavior. The standard == on xml elements now attempts to behave in such a way that symmetry and hashCode contracts will be preserved. It's probably not 100% there yet, but I can tell you this: it is closer today than it was yesterday. Review by community.
* Tweaking the sealed logic in light of #3097.Paul Phillips2010-02-251-1/+1
| | | | | | | Reorganizes children a little so they always come back sorted the same way the pickler does. Taking advantage of -Yfatal-warnings in the test case. Review by community.
* Fixed tests to unbreak build. No review.Philipp Haller2010-02-233-7/+5
|
* Some repl cleanups and debugging conveniences.Paul Phillips2010-02-211-3/+3
|