summaryrefslogtreecommitdiff
path: root/test/pending/run
Commit message (Collapse)AuthorAgeFilesLines
* Disabled test after failing to read linux's mind.Paul Phillips2010-12-012-0/+40
|
* A new totally safe signal manager, along with a...Paul Phillips2010-11-261-0/+22
| | | | | | | | | | | | | | | | | | | A new totally safe signal manager, along with all the support code needed for that. See the classes in scala.tools.reflect.* for interesting new weapons. Also includes inaugural handy usage: scala> val x = 10 x: Int = 10 scala> while (true) () [ctrl-C] Execution interrupted by signal. scala> x res1: Int = 10 No review, but feedback welcome.
* Some refinement of the error messages when the ...Paul Phillips2010-11-181-6/+5
| | | | | | | | | | | | | | | | | Some refinement of the error messages when the found and required types have the same simple names. No longer must we watch people scratch their heads at such messages as: found : scala.collection.Set[String] required: Set[String] Now so clear you could enjoy a movie through it: found : scala.collection.Set[String] required: scala.collection.immutable.Set[String] No review.
* Introduced -Ymurmur with murmur hashcodes.Paul Phillips2010-10-112-18/+0
| | | | | | | | contributed by "archontophoenix", following in the grand tradition of code by people whose actual names I don't know. References #2537, but it doesn't close until some sensible hashcode is used by default. Review by community.
* Another batch of busywork shuffling the content...Paul Phillips2010-10-0426-223/+26
| | | | | | Another batch of busywork shuffling the contents of pending around. Can almost see some daylight. No review.
* The next batch of tests put up a little more st...Paul Phillips2010-10-025-215/+0
| | | | | | | | | | | | | | The next batch of tests put up a little more struggle, but only a little. See test/pending/pos/unappgadteval.scala (the changes for which were in the previous commit) for an example of a test which might be on to something. Any idea what it would take to get it working? // the key lines case i @ Suc() => { (y: Int) => y + 1 } // a = Int => Int case f @ Lam[b,c](x, e) => { (y: b) => eval(e, env.extend(x, y)) } // a = b=>c No review.
* Sorting through the tests in pending from oldes...Paul Phillips2010-10-0211-95/+22
| | | | | | | | | | | | | | | | | Sorting through the tests in pending from oldest to newest because I don't believe in having useless appendages. The verdict on the oldest fifteen tests is: 15/15 are fixed. Many were already in files under a different name. I moved a few and deleted the rest. Fun fact of the day: apparently there was a time when to call into java varargs with no arguments you might have to write something like: getClass().getMethod("getCount", Array[java.lang.Class[T] forSome { type T }]()) On this basis I retract any complaints I've ever had about anything. There is one question mark outlined in pos/testCoercionThis.scala, a file formerly called pos/moors.scala and therefore... review by moors.
* Cleaning up the contents of test.Paul Phillips2010-09-289-136/+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.
* new tests. No review.Martin Odersky2010-08-241-0/+11
|
* Removed unfinished Jenkins hashcode for final.Paul Phillips2010-06-272-0/+18
|
* A wholesale reversion of the pattern matcher to...Paul Phillips2010-06-161-0/+9
| | | | | | | | A wholesale reversion of the pattern matcher to r21939, motivated by the appearance of #3578. Closes #3578, reopens #2800, #3050. Review by moors. (I can't keep saying "no review" when every move I make in here seems to break something.)
* Should fix the interpreter bug I just introduced.Paul Phillips2010-05-131-0/+10
| | | | | | | crashing-under-optimise test into pending since that looks like a genuine bug - I'll open it a ticket. No review.
* Rolled partest back to r21328.Paul Phillips2010-05-064-0/+51
| | | | | | | | 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.)
* StringBuilder no longer violates the Seq revers...Paul Phillips2010-04-241-0/+22
| | | | | | | | | | | | StringBuilder no longer violates the Seq reverse contract: it returns a new StringBuilder. The behavior formerly found in reverse (updates in place) is now available in reverseContents. Migration warning on reverse. Closes #3327. Also did some StringBuilder rewriting as per discussion with odersky. And took a cleaver to parts of the documentation to get to the good parts a little faster. Review by community.
* If I work on this patch any longer without chec...Paul Phillips2010-04-054-51/+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.]
* Fix for #3136 by reverting the line in r18184 w...Paul Phillips2010-03-051-0/+19
| | | | | | | | | Fix for #3136 by reverting the line in r18184 which caused this and other regressions. The downside is that the #1697 test case no longer passes, but protracted shrug because it wasn't entirely fixed anyway. Review by moors. (Can you triangulate your way to a patch where both work simultaneously? It's today's bonus challenge!)
* One of those "$.05 for the bolt, $50,000 for kn...Paul Phillips2010-01-281-27/+0
| | | | | | | | | One of those "$.05 for the bolt, $50,000 for knowing where to put it" commits. Closes #425, #816, #2310, #2691. All credit for this patch goes to me for having the genius to know when new eyes were needed (although if you're feeling generous some could also go to walter korman for the actual debugging and code writing part.)
* Added test to pending with extensive exploratio...Paul Phillips2010-01-191-0/+193
| | | | | | Added test to pending with extensive exploration of behaviors of instanceOf as compared with type matching.
* Fix for #2365.Paul Phillips2010-01-153-0/+49
| | | | | | | | | | | | | | a soft reference around cached classes so they do not interfere with garbage collection. There is a test case, but it is in pending because I spent longer trying to get it to fail under partest than I did writing the actual patch. If you would like to see the behavior which was corrected, go to test/pending/run/bug2365 and run that script with scalac built before and after this commit. Review by dubochet.
* Moved the test for #2364 to pending because it ...Paul Phillips2010-01-112-0/+61
| | | | | | Moved the test for #2364 to pending because it apparently uses some nonstandard classes.
* A pending test for #2087, and a script test whichPaul Phillips2009-10-221-0/+8
| | | | | | | | is supposed to exercise r19165, except that I discovered that no script tests have been run since July 2008: r15658 says "remove script tests for now - they seem to block in certain configurations."
* reverted immutable.Vector because it gave rando...Martin Odersky2009-10-123-3/+4
| | | | | | reverted immutable.Vector because it gave random build errors on my machine. Fixed various tickets, updated test and check files.
* Moved a pile of passing tests from pending to f...Paul Phillips2009-10-072-54/+16
| | | | | | Moved a pile of passing tests from pending to files, fixed some untesty tests, and will now close the associated tickets.
* Fixed #1000, #2060Martin Odersky2009-10-071-0/+14
|
* Sequence->SeqMartin Odersky2009-10-023-0/+79
|
* Test case for #2030 and #2056.Paul Phillips2009-10-012-8/+0
|
* Reverted r18215 at martin's request.Paul Phillips2009-09-252-0/+12
|
* [no content change] Fixed all SVN properties: m...Gilles Dubochet2009-09-247-4/+3
| | | | | | | | [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.
* Moved test case for now-fixed #2027 into files.Paul Phillips2009-09-011-7/+0
|
* Re-enabled forwarders and moved the formerly fa...Paul Phillips2009-08-032-10/+0
| | | | | | Re-enabled forwarders and moved the formerly failing tests for #363 and #1745 out of pending.
* The presently salvageable portion of my attempt...Paul Phillips2009-07-091-0/+41
| | | | | | | The presently salvageable portion of my attempt to fix bugs #425 and #816 (which I have indeed fixed, but a bazillion other test cases broke so the fix is commented out until I can make everyone happy at once.)
* Implemented proposed strategy for #1503 and mov...Paul Phillips2009-07-052-12/+0
| | | | | | Implemented proposed strategy for #1503 and moved test case out of pending (and fixed it so it didn't throw a match error.)
* Added test for #2034.Philipp Haller2009-06-221-0/+14
|
* Added tests for #2027 and #2030.Philipp Haller2009-06-163-0/+15
|
* pending test for ticket #2030David MacIver2009-06-012-0/+6
|
* In "Iterable" and in all its subclasses, "itera...Gilles Dubochet2009-05-271-1/+1
| | | | | | In "Iterable" and in all its subclasses, "iterator" replaces "elements" (and assorted changes).
* Organized disabled directory so it works with p...Paul Phillips2009-05-092-4/+0
| | | | | | | 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.
* Today's frustration commit! Disables all forwar...Paul Phillips2009-03-312-0/+10
| | | | | | | Today's frustration commit! Disables all forwarders including main until we can figure out how to avoid #1795, and reverts ostensible fix for #1240 to avoid #1840, #1842, and the rest of the gang.
* moved most of the passing tests from pending to...Paul Phillips2009-02-102-37/+0
| | | | | | moved most of the passing tests from pending to files ; reunited inner.scala with inner.check
* Iulian says I should delete these.Geoffrey Washburn2008-11-192-14/+0
|
* Oops.Geoffrey Washburn2008-11-192-0/+14
| | | | | rather than placed in their new location.
* new failing testsMartin Odersky2008-11-182-0/+12
|
* Tests for ticket #1503.David MacIver2008-11-102-0/+12
|
* Reversion of the changes to targetParams which ...David MacIver2008-11-102-0/+37
| | | | | | | | | Reversion of the changes to targetParams which I made to fix #1260 as they caused problems (specifically #1480). This code is wrong but it's the old wrong behaviour, which is less broken than the new wrong behaviour.
* General tidying from paul (mostly concerning us...David MacIver2008-11-091-9/+0
| | | | | General tidying from paul (mostly concerning use of setType).
* Fix to #1450. Moved test from pending.David MacIver2008-10-262-4/+0
|
* Tests for #1450.David MacIver2008-10-262-0/+4
|
* Fixed RefChecks to not replace unapplies with c...David MacIver2008-09-041-13/+0
| | | | | | Fixed RefChecks to not replace unapplies with constructors (ticket 0508). Moved test for this from pending to main tests.
* corrected several problems with error reporting...Martin Odersky2008-08-181-0/+4
| | | | | | | corrected several problems with error reporting: positions checked twice, warnings masking errors. Refined solution of forward implicits without5 result type.
* All these tests in pending currently pass for me.Geoffrey Washburn2008-08-052-7/+0
| | | | | Lets see what happens with the commit and nightly builds.