summaryrefslogtreecommitdiff
path: root/test/disabled
Commit message (Collapse)AuthorAgeFilesLines
...
* Disable currently failing pos/code.scala.Hubert Plociniczak2011-09-261-0/+20
|
* Added test for the completion problem in the pr...skyluc2011-09-264-0/+53
| | | | | | Added test for the completion problem in the presentation compiler reported in the scala-ide ticket 1000620.
* Getting liftCode to work.Martin Odersky2011-09-254-44/+0
|
* Handling Freevars in Importers and discovering ...Martin Odersky2011-09-231-1/+3
| | | | | | Handling Freevars in Importers and discovering whole new classes of errors in Liftcode.
* Now correctly handles moduleclasses in ImportersMartin Odersky2011-09-231-7/+3
|
* more tweaks to symbol importing; not done yetMartin Odersky2011-09-221-3/+3
|
* Started work on compiler toolbox that can compi...Martin Odersky2011-09-211-1/+16
| | | | | | Started work on compiler toolbox that can compile reflect trees at runtime.
* Changes to Liftcode to use new reflection seman...Martin Odersky2011-09-201-2/+6
| | | | | | Changes to Liftcode to use new reflection semantics, where a compiler uses type checking.
* Added new disabled test for eclipse scala-ide t...Micro Dotta2011-09-163-0/+11
| | | | | | | Added new disabled test for eclipse scala-ide ticket1000609. Corrected test framework to fail nicely when the tree retrieved after an has no associated symbol.
* Moved test for scala-ide ticket-1000508 under /...Micro Dotta2011-09-053-0/+169
| | | | | | | | Moved test for scala-ide ticket-1000508 under /disabled/presentation/ directory, as the current test's result is wrong (the ticket is still opened). It will be moved back only once the ticket is closed. No review.
* Created test cases for tickets that need to be ...Micro Dotta2011-09-059-0/+45
| | | | | | | Created test cases for tickets that need to be fixed in the presentation compiler. These tests should eventually be moved under folder /files/presentation/ once they are working.
* Renamed tests named bugXXX to tXXX, no review.Paul Phillips2011-08-244-0/+0
|
* New reification code for symbols and types.Martin Odersky2011-08-235-0/+34
|
* LiftCode works again, now integrated with new r...Martin Odersky2011-07-302-8/+0
| | | | | | | | LiftCode works again, now integrated with new reflection library. Other changes: def Literal(x: Any) has been deprecated, and all its uses removed. Modifiers has lost positions as fourth case class argument; is now a field, mirroring Tree.pos (this removes junk in patterns and makes reification simpler). Review by extempore.
* Getting LiftCode to work.Martin Odersky2011-07-304-27/+0
|
* Disabled all the old scala.reflect._ tests whic...Paul Phillips2011-07-296-0/+35
| | | | | | Disabled all the old scala.reflect._ tests which are now crash-failing, no review.
* "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.