summaryrefslogtreecommitdiff
path: root/test/disabled
Commit message (Collapse)AuthorAgeFilesLines
...
* "Freed the lisp test." Tweaked partest defaults...Paul Phillips2011-07-272-544/+0
| | | | | | "Freed the lisp test." Tweaked partest defaults a little in the hopes that seth tisue is correct in his analysis. No review.
* getting the revamped getClass to work on Java 5Adriaan Moors2011-06-232-84/+0
| | | | | | | | | | | | | | | | | hunch by adriaan (needed to change Object to Any in strategic location), location + fix determined by paul, menial work (reverts of obsolete spears and introduction of fix) by adriaan review by extempore Revert "A line missed from spear thrust, no review. Revert " "Thrusting spear into darkened alcove attempting to slay java5 " Revert "New theory: fails running on java 1.5. Put in hack to " discover Revert "Everything builds for me, but apparently not for " jenkins. First "
* New theory: fails running on java 1.5.Paul Phillips2011-06-222-0/+84
| | | | | truth of theory. No review.
* Compilation of spec-List enters an infinite loo...Paul Phillips2011-06-101-0/+869
| | | | | | | Compilation of spec-List enters an infinite loop under -optimise, disabling in the hopes of seeing a new build before I die. I'll put it back. No review.
* Lisp test wins again, no review.Paul Phillips2011-06-072-0/+544
|
* Of late the test which fires up the window serv...Paul Phillips2011-04-142-0/+42
| | | | | | | | Of late the test which fires up the window server, which has already been the source of undue quantities of inconvenience, has taken to hanging indefinitely when I run the test suite on a remote machine. Rope at end, goodbye test, no review.
* New starr based on r24749. No review.Paul Phillips2011-04-133-0/+409
|
* Refactoring the collections api to support diff...Aleksandar Pokopec2011-04-131-0/+47
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Refactoring the collections api to support differentiation between referring to a sequential collection and a parallel collection, and to support referring to both types of collections. New set of traits Gen* are now superclasses of both their * and Par* subclasses. For example, GenIterable is a superclass of both Iterable and ParIterable. Iterable and ParIterable are not in a subclassing relation. The new class hierarchy is illustrated below (simplified, not all relations and classes are shown): TraversableOnce --> GenTraversableOnce ^ ^ | | Traversable --> GenTraversable ^ ^ | | Iterable --> GenIterable <-- ParIterable ^ ^ ^ | | | Seq --> GenSeq <-- ParSeq (the *Like, *View and *ViewLike traits have a similar hierarchy) General views extract common view functionality from parallel and sequential collections. This design also allows for more flexible extensions to the collections framework. It also allows slowly factoring out common functionality up into Gen* traits. From now on, it is possible to write this: import collection._ val p = parallel.ParSeq(1, 2, 3) val g: GenSeq[Int] = p // meaning a General Sequence val s = g.seq // type of s is Seq[Int] for (elem <- g) { // do something without guarantees on sequentiality of foreach // this foreach may be executed in parallel } for (elem <- s) { // do something with a guarantee that foreach is executed in order, sequentially } for (elem <- p) { // do something concurrently, in parallel } This also means that some signatures had to be changed. For example, method `flatMap` now takes `A => GenTraversableOnce[B]`, and `zip` takes a `GenIterable[B]`. Also, there are mutable & immutable Gen* trait variants. They have generic companion functionality.
* One breakage too many, this test is a pest -> d...Iulian Dragos2011-03-312-0/+215
| | | | | One breakage too many, this test is a pest -> disabled. no review.
* Disabled all the script tests.Paul Phillips2011-03-2911-0/+138
| | | | | breaking the distribution build. No review.
* And so my attempt to have a performance test dr...Paul Phillips2011-03-291-0/+38
| | | | | | And so my attempt to have a performance test draws the final curtain, no review.
* Adding some tests for #3651.Aleksandar Pokopec2011-03-222-0/+222
| | | | | No review.
* Implementing foreach to work in parallel in Par...Aleksandar Pokopec2011-03-222-222/+0
| | | | | | | | | | | | Implementing foreach to work in parallel in ParIterableLike. Doing a bunch of refactoring around in the collection framework to ensure a parallel foreach is never called with a side-effecting method. This still leaves other parts of the standard library and the compiler unguarded. No review.
* Oh the irony, disabling the failing test made t...Paul Phillips2011-03-222-0/+222
| | | | | | | Oh the irony, disabling the failing test made the build fail, because another test is hardcoded to use its paths. Disabled that test too. We'll put humpty back together again. No review.
* We need a successful build, not sure why this h...Paul Phillips2011-03-212-0/+222
| | | | | | We need a successful build, not sure why this hasn't been disabled yet. Disabled failing coder test, no review.
* Disabled test not actually doing anything anywa...Paul Phillips2011-03-181-0/+40
| | | | | Disabled test not actually doing anything anyway, no review.
* Re-enabling the disabled signature test along w...Paul Phillips2011-03-063-41/+0
| | | | | | | Re-enabling the disabled signature test along with changes which allow it to pass. Closes #4238 again, no review. (But would anyone like to expand the signature tests? Great idea, extempore!)
* Reverting some recent signature code and tempor...Paul Phillips2011-03-043-0/+41
| | | | | | | Reverting some recent signature code and temporarily disabling a test so I can work this out without shattering the tranquility of the build. No review.
* In support of project "A Better IDE...Paul Phillips2011-02-104-605/+0
| | | | | | | | | | | | | | | | reinstate the disabled test. COMMITTERS: the test is very fragile. If you don't run the whole test suite (it's the very last one which runs!) then you broke the build. Upon your toes you should be. For anyone unaware, test/partest --update-check path/to/test will magically pass any test and update the checkfile to resemble whatever output it just produced. Incautious use of this feature may negatively impact the mood of certain extempores. No review.
* After seeing the 481 line diff I had to apply t...Paul Phillips2011-02-104-0/+605
| | | | | | | | | | After seeing the 481 line diff I had to apply to bring the checkfile up to date, I concluded this test cannot be in the general pool: this is the third build break in the last few days, because it changes output like some people change socks. (Hygenic people.) Sorry to move it to disabled iulian, but I don't know what else to do with it on short notice. Review by dragos.
* Guess I can't have a javap test with no javap.Paul Phillips2011-02-072-0/+42
|
* Re-enabled test spec-traits (removed the swing ...Iulian Dragos2011-02-051-83/+0
| | | | | | Re-enabled test spec-traits (removed the swing dependent part, since all it tested was call-by-name parameters). no review.
* Switched back to StoreReporter for presentation...Iulian Dragos2011-02-034-614/+0
| | | | | | | | Switched back to StoreReporter for presentation compiler tests. This eats up error messages, but if the output is correct we don't mind a spurious error here and there. Renabled simple presentation compiler tests. no review.
* Updated completion tests, still waiting for a d...Iulian Dragos2011-02-022-51/+261
| | | | | | Updated completion tests, still waiting for a divergent implicits fix in the presentation compiler. no review.
* Made the presentation compiler reporter in inte...Iulian Dragos2011-01-282-6/+7
| | | | | | Made the presentation compiler reporter in interactive tests show up error messages.no review.
* Re-enabled one presentation compiler test.Iulian Dragos2011-01-273-95/+0
|
* Re-enabled another position check in FindTrees.Iulian Dragos2011-01-272-2/+5
|
* Disabled presentation compiler tests.Iulian Dragos2011-01-267-0/+495
|
* [scaladoc] Fixed failing test.Gilles Dubochet2011-01-241-107/+0
|
* Disabled failing test, no review.Paul Phillips2011-01-231-0/+107
|
* Disentangled scaladoc and the presentation comp...Iulian Dragos2011-01-041-1/+1
| | | | | | | | | | | Disentangled scaladoc and the presentation compiler. Now there are different flags, forInteractive and forScaladoc, instead of the overloaded onlyPresentation. While it is unfortunate to have these flags, I know of no easy way to customize the typer (the behavior they control is pretty deep into the analyzer). This shaves off around 100MB of unnecessary docComments from the presentation compiler. review by odersky, dubochet.
* Added back a failing test. No review.Aleksandar Pokopec2010-10-051-96/+0
|
* Disabled a failing scaladoc test. No review.Aleksandar Pokopec2010-10-051-0/+96
|
* Fixed a scalacheck test group "test entire subd...Aleksandar Pokopec2010-10-0410-1164/+0
| | | | | | | Fixed a scalacheck test group "test entire subdirectory" problem. It's now possible to add scalacheck tests consisting of multiple files. No review.
* Temporarily disabled collections checks to keep...Aleksandar Pokopec2010-09-0110-0/+1164
| | | | | | | Temporarily disabled collections checks to keep build from breaking. No review
* 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.