summaryrefslogtreecommitdiff
path: root/test/disabled
Commit message (Collapse)AuthorAgeFilesLines
* Updated disabled test file.Iulian Dragos2010-06-091-28/+0
| | | | | | compile because the specialized variants of apply were not implemented as well. Fixed by extending runtime.AbstractFunction0 instead.
* Re-enabled a number of previously disabled tests;Antonio Cunei2010-05-2817-335/+0
| | | | | according to my tests, they all currently work.
* Stupid java 5/6 schism got me.Paul Phillips2010-05-261-0/+12
|
* I figured it'd be a miracle if I got the script...Paul Phillips2010-05-231-0/+86
| | | | | | I figured it'd be a miracle if I got the script test past our fickle robot overseers. Disabled, no review.
* Rolled partest back to r21328.Paul Phillips2010-05-068-0/+309
| | | | | | | | 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.)
* Tightened what gets specialized: only when the ...Iulian Dragos2010-05-052-71/+0
| | | | | | | | Tightened what gets specialized: only when the type parameter appears at top level, or as a type argument to a Java array. For example T, Array[T] cause specialization, but List[T] does not. Resurrected spec-matrix, forgotten among the disabled tests. No review.
* Made the icode reader more resilient to errors.Iulian Dragos2010-04-1315-766/+71
| | | | | | | 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.
* Disabling what I think are the last two failing...Paul Phillips2010-04-124-0/+101
| | | | | | | | | | | | | | | | 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-0/+85
| | | | | | Disabled test that hangs when actors package is compiled with specialization. Review by dragos.
* Disabling some more tests which crash under -op...Paul Phillips2010-04-125-0/+564
| | | | | Disabling some more tests which crash under -optimise. No review.
* Disabled the test which is hanging the -optimis...Paul Phillips2010-04-122-0/+16
| | | | | Disabled the test which is hanging the -optimise run. No review.
* If I work on this patch any longer without chec...Paul Phillips2010-04-053-25/+0
| | | | | | | | | | | | | | | | 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.]
* While working on partest discovered that Compil...Paul Phillips2010-03-251-1/+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.
* Temporarily disabling failing test until I can ...Paul Phillips2010-03-093-0/+25
| | | | | | Temporarily disabling failing test until I can finish my partest work. No review.
* Enabled scalacheck tests.Paul Phillips2010-03-011-1/+1
| | | | | | | | 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.
* Disabled JavaInteraction test.Paul Phillips2010-02-152-0/+27
| | | | | | | | | of time because it fails if you can't connect to the screen of the test machine. And then if any test fails, the stability test doesn't run. We badly a separate testing area for tests which are prone to failure for reasons which are unrelated to the quality ostensibly being tested. No review.
* Disabled failing test. Review by plocinic.Paul Phillips2010-02-107-0/+33
|
* Moved some test cases from pending to files sin...Paul Phillips2010-01-283-0/+111
| | | | | | | | Moved some test cases from pending to files since the bugs they were watching for seem to be fixed. Moved some other test cases from pending to disabled because they deceptively claim to pass while investigation reveals the ticket needs to remain open. Closes #1996, #2660.
* Disabled docgenerator test, which isn't compati...Gilles Dubochet2009-11-242-0/+472
| | | | | Disabled docgenerator test, which isn't compatible with Scaladoc 2.
* Moved disabled tests back into their original p...Antonio Cunei2009-11-0615-1117/+0
| | | | | | Moved disabled tests back into their original place. Expect 7 tests to fail.
* Fix for disabled test t2359.Philipp Haller2009-10-122-26/+0
|
* Disabling another test trying to unhang the tes...Paul Phillips2009-10-072-0/+26
| | | | | Disabling another test trying to unhang the test suite.
* Disabled an actor test which is hanging the tes...Paul Phillips2009-10-062-0/+46
| | | | | Disabled an actor test which is hanging the test suite.
* [no content change] Fixed all SVN properties: m...Gilles Dubochet2009-09-249-4/+1
| | | | | | | | [no content change] Fixed all SVN properties: mimes, EOL, executable. Id expansion is consistently enabled for Scala/Java/C# sources in 'src/' and consistently disabled and removed from everywhere else: there should not be any dead Id tags anymore.
* The first working scalacheck test! Now Arbitrar...Paul Phillips2009-09-161-10/+0
| | | | | | The first working scalacheck test! Now Arbitrary is working for us instead of our nemesis Capt. Entropy.
* Polished up some disabled tests and returned th...Paul Phillips2009-08-144-209/+0
| | | | | Polished up some disabled tests and returned them to files.
* scalap changed to treat named parameters and pa...ilyas2009-06-2920-72/+0
| | | | | scalap changed to treat named parameters and package objects
* Named and default argumentsLukas Rytz2009-05-3014-0/+44
| | | | | | | - MethodTypes now have (params: List[Symbol]) - "copy"-methods for case classes - the "copy" object in the compiler is now called "treeCopy"
* In "Iterable" and in all its subclasses, "itera...Gilles Dubochet2009-05-274-6/+6
| | | | | | In "Iterable" and in all its subclasses, "iterator" replaces "elements" (and assorted changes).
* Disabled "natives" test because its annoyance /...Gilles Dubochet2009-05-1310-0/+182
| | | | | | Disabled "natives" test because its annoyance / usefulness ratio was considered to be too low.
* Rebuild all plugin tests and moved them back to...nielsen2009-05-1142-374/+0
| | | | | Rebuild all plugin tests and moved them back to the working test cases
* Organized disabled directory so it works with p...Paul Phillips2009-05-0971-347/+1
| | | | | | | Organized disabled directory so it works with partest. You can run ./partest --srcpath disabled to run the tests in that location. Fixed a few tests in disabled and pending and moved to files.
* massive new collections checkin.Martin Odersky2009-05-0870-0/+2041