summaryrefslogtreecommitdiff
path: root/src/partest
Commit message (Collapse)AuthorAgeFilesLines
* Fix for partest so all the javaopts files would...Paul Phillips2009-09-231-3/+11
| | | | | | Fix for partest so all the javaopts files wouldn't be ignored when running tests. With that in hand, fixed #2379.
* Some duplication elimination in partest.Paul Phillips2009-09-221-86/+36
|
* new arrays are done.Martin Odersky2009-09-211-2/+2
|
* The first working scalacheck test! Now Arbitrar...Paul Phillips2009-09-161-21/+27
| | | | | | The first working scalacheck test! Now Arbitrary is working for us instead of our nemesis Capt. Entropy.
* Resurrected the former contents of scala.io in ...Paul Phillips2009-09-112-13/+6
| | | | | | | | Resurrected the former contents of scala.io in their new home, scala.tools.nsc.io, and equipped them with fake beards and handlebar moustaches. Also restored the reverted bits of the compiler which had been taking advantage of them.
* Made canEqual abstract in Product and only inse...Paul Phillips2009-09-111-0/+1
| | | | | | | Made canEqual abstract in Product and only inserted into case classes if no concrete implementation is inherited. Restored the disabled canEquals usages in collections.
* Reverts scala.io.* to its natural state, and th...Paul Phillips2009-09-072-6/+13
| | | | | | | | Reverts scala.io.* to its natural state, and the rest of trunk to using java.io.File. Anyone who wants to salvage any usable bits is of course welcome to do so, so long as they also assume responsibility for those bits.
* Large Path/File/Directory checkin.Paul Phillips2009-08-302-13/+6
| | | | | | | | of the functionality that one can straightforwardly obtain from the capabilities of java.io.File in java 5, but written with an eye on the significantly more capable (if not significantly more appealing) nio2 API in openjdk.
* Adjusted timeout in partest to get rid of spuri...Philipp Haller2009-08-191-1/+2
| | | | | Adjusted timeout in partest to get rid of spurious build failures.
* switch to unnested packages.Martin Odersky2009-07-2415-18/+33
|
* Fixed build.Philipp Haller2009-07-021-1/+1
|
* Removed obsolete Scheduler restart.Philipp Haller2009-07-022-6/+2
|
* scalap changed to treat named parameters and pa...ilyas2009-06-291-4/+5
| | | | | scalap changed to treat named parameters and package objects
* Partest no longer hangs when reporting fails.Philipp Haller2009-06-252-19/+26
|
* Skeletal implementation of scala.io.File.Paul Phillips2009-06-241-3/+0
| | | | | | | Separated default source code encoding (the one specified by -encoding) from default system encoding, because otherwise you can't compile scala with the defaults on OSX.
* In "Iterable" and in all its subclasses, "itera...Gilles Dubochet2009-05-274-5/+5
| | | | | | In "Iterable" and in all its subclasses, "iterator" replaces "elements" (and assorted changes).
* A big yet interim patch emerging from my attemp...Paul Phillips2009-05-261-4/+3
| | | | | | | | | | | | | | | | | | A big yet interim patch emerging from my attempts to centralize common classloader-related code. As it turns out, not that much of the patch is directly associated with that. Most of it is cleanup in the neighborhoods I was visiting, but there are a few new library files about which I'm open to feedback: scala/util/control/Exception - lots of exception handling code. scala/net/Utility - what would be the first file in scala.net.*, more code to follow if that sounds like a good package idea. scala/util/ScalaClassLoader - mostly convenience methods right now, more sophistication to come Also, this adds a :jar command to the repl which adds a jar to your classpath and replays the session.
* Fixed #1999.Philipp Haller2009-05-244-13/+24
|
* Fixed partest build problem.Philipp Haller2009-05-241-0/+5
|
* Added sequence control for multi-file tests.Philipp Haller2009-05-151-15/+37
|
* 1.4-related cleanup and reorganization.Antonio Cunei2009-05-158-45/+3
| | | | | | | Removed a bunch of now useless 1.4 code, merged back jvm5-specific partest tests into the general jvm tests, documentation updates.
* tweak to compile under java 6Paul Phillips2009-05-061-1/+1
|
* Scala decompiler test suite addedilyas2009-05-064-5/+81
|
* Reimplementation of XML encoding heuristics fro...Paul Phillips2009-04-301-4/+1
| | | | | Reimplementation of XML encoding heuristics from spec.
* Various cleanups and redundancy-removal related...Paul Phillips2009-03-163-59/+38
| | | | | Various cleanups and redundancy-removal related to properties.
* More consolidation and duplication elimination ...Paul Phillips2009-03-131-8/+2
| | | | | More consolidation and duplication elimination in Properties.
* A big cleanup of Settings code.Paul Phillips2009-03-121-1/+1
| | | | | | | manage existing settings and add new ones. It's paving the way for low-fuss scalac preferences so we can exert fine grained config file based control over compiler behavior.
* added partest.properties to jarmichelou2009-03-104-16/+13
|
* Refactored a pile of duplicated Properties code...Paul Phillips2009-03-101-38/+6
| | | | | | Refactored a pile of duplicated Properties code into a trait which is used by the library, compiler, and partest Properties objects.
* removed deprecated warning, updated svn props, ...michelou2009-03-108-98/+114
| | | | | removed deprecated warning, updated svn props, cleaned up code
* Fixed lockup in partest.Philipp Haller2009-01-292-1/+4
|
* Fixed ant test.suite target for jvm tests that ...Philipp Haller2009-01-141-0/+14
| | | | | Fixed ant test.suite target for jvm tests that contain directories.
* Updated (all) copyright notices to 2009Antonio Cunei2009-01-131-1/+1
|
* Updated copyright notices to 2009Antonio Cunei2009-01-0913-13/+13
|
* Fix timeout problem in partestPhilipp Haller2009-01-083-163/+160
|
* Add debug option to partest ant task.Philipp Haller2008-12-182-0/+21
|
* Adds language and country settings forcing them...Philipp Haller2008-11-241-0/+1
| | | | | | Adds language and country settings forcing them to en_US when running tests
* Fixed bug in partest that prevented setting per...Philipp Haller2008-11-132-17/+20
| | | | | Fixed bug in partest that prevented setting per-test classpath.
* Fixed partes to run on 'quick' classes (was ass...Iulian Dragos2008-11-061-1/+1
| | | | | | Fixed partes to run on 'quick' classes (was assuming the old directory structure).
* fixed "script" tests on Windows (Cygwin+DOS)michelou2008-11-011-1/+9
|
* Merged new test set code from 2.7.2 branch.Philipp Haller2008-11-011-93/+70
|
* Fixed multi-file jvm5 tests.Philipp Haller2008-10-311-0/+14
|
* Added handling of pos5 tests.Philipp Haller2008-10-281-0/+14
|
* Improved log file output if javac fails.Philipp Haller2008-10-271-14/+25
|
* Improved error output in case invoking javac fa...Philipp Haller2008-10-271-3/+10
| | | | | Improved error output in case invoking javac fails.
* Ported recent partest fixes in 2.7.2 branch.Philipp Haller2008-10-243-5/+16
|
* Changed the way in which the path to javac is p...Philipp Haller2008-10-215-10/+15
| | | | | Changed the way in which the path to javac is passed to partest.
* Use JAVA_HOME for finding javac.Philipp Haller2008-10-171-2/+11
|
* Use different exit code by default.Philipp Haller2008-10-151-1/+1
|
* Improved error reporting when running external ...Philipp Haller2008-10-151-3/+13
| | | | | Improved error reporting when running external programs such as javac.