aboutsummaryrefslogtreecommitdiff
path: root/compiler/test
Commit message (Collapse)AuthorAgeFilesLines
...
* Restore partest and enable it to run alongside new partestFelix Mulder2017-03-296-0/+1478
|
* Add testing of new test frameworkFelix Mulder2017-03-292-49/+132
|
* Add summary report to pos tests and run testsFelix Mulder2017-03-292-133/+264
|
* Consolidate test reporters in `TestReporter` always dumping log fileFelix Mulder2017-03-294-59/+107
|
* Throw on timeoutFelix Mulder2017-03-291-2/+3
|
* Disable interactive mode in CIFelix Mulder2017-03-293-1/+7
|
* Fix tasty bootstrapFelix Mulder2017-03-292-26/+52
|
* Support copyToDir for tests that mutate original sourceFelix Mulder2017-03-292-8/+18
|
* Make compileList take test name argFelix Mulder2017-03-293-4/+9
|
* Fix reflective method lookup to work for both scalac & dottyFelix Mulder2017-03-291-21/+28
|
* Make tests composableFelix Mulder2017-03-292-414/+360
|
* Kill partestFelix Mulder2017-03-297-1122/+24
|
* Remove `tests.scala`Felix Mulder2017-03-293-378/+18
|
* Move whitelist test out of `tests.scala`Felix Mulder2017-03-292-12/+17
|
* Move REPL diff tests out of `tests.scala`Felix Mulder2017-03-293-19/+23
|
* Add all tests from `tests.scala` as is to new infraFelix Mulder2017-03-291-15/+357
|
* Rewrite testing logic as to not copy filesFelix Mulder2017-03-291-173/+267
|
* Stylistic changes to `Compiler` and `DPConsoleRunner`Felix Mulder2017-03-291-12/+12
|
* Add run testing capabilitiesFelix Mulder2017-03-292-19/+137
|
* Add ability to compile single filesFelix Mulder2017-03-291-1/+16
|
* Add support for error annotations in neg testsFelix Mulder2017-03-292-42/+188
|
* Add neg testing capability to ParallelTestingFelix Mulder2017-03-291-2/+45
|
* Parallelize compilation runs for ParallelTesting infraFelix Mulder2017-03-291-27/+92
|
* Prefix out directory with name of testFelix Mulder2017-03-291-1/+6
|
* Add java compilation to `ParallelTesting`Felix Mulder2017-03-291-0/+23
|
* Add interface for unit tests into `ParallelTesting`Felix Mulder2017-03-291-0/+60
|
* Add initial compilation functionality to ParallelTesting traitFelix Mulder2017-03-291-0/+41
|
* Fix varargs in methods and constructors (#2135)Igor Mielientiev2017-03-221-0/+3
| | | | | | | * Fix varargs in methods (Issue: #1625) * Fix minor comments * Change varargs parameter message * Fix failed test, fix case for constructor
* Fix IntellliJ support by making dotty-doc its own subprojectFelix Mulder2017-03-211-2/+2
|
* Move 'invalid super qualifier' error to new error format.Abel Nieto2017-03-171-0/+24
| | | | | | | | | As part of https://github.com/lampepfl/dotty/issues/1589, use the new error message for static super references where the qualifier isn't a parent of the class. Tested: Added unit test.
* Merge pull request #2043 from dotty-staging/tailrec-derivesFromDmitry Petrashko2017-03-151-2/+2
|\ | | | | Tailrec for derivesFrom/lookupRefined/classSymbol/classSymbols
| * Add @tailrec to avoid regressions.Nicolas Stucki2017-03-011-2/+2
| |
* | Fix #2089: Error when compiling ParSetLike, ParSet, SetLike, in this orderGuillaume Martres2017-03-131-0/+4
| | | | | | | | | | This fix is inspired by 6c91684, but I couldn't tell you why it works exactly, it's just something I tried.
* | Fix compilation of ParSetLike by itselfGuillaume Martres2017-03-131-0/+1
| | | | | | | | | | | | | | Before this commit, ParSetLike compiled fine as part of compileStdLib but crashed when compiled by itself because we tried to force a LazyRef while forcing the same LazyRef. This commit fixes this by being slightly more lazy where it matters.
* | Move tests/tasty/* to tests/pickling/*Guillaume Martres2017-03-111-1/+0
| | | | | | | | | | These two directories were tested using the same flags, but tests/tasty compiled all of its files at once which is usually not what is intended.
* | Merge pull request #2049 from ennru/ennru_RecursiveNeedsTypeodersky2017-03-091-1/+94
|\ \ | | | | | | Change "recursive/cyclic definitions needs type" errors to Message
| * | Analysis of overloaded or recursive is harder than expectedEnno Runne2017-03-071-3/+3
| | | | | | | | | | | | Fall-back to reporting "overloaded or recursive needs type".
| * | More detail in error messagesEnno Runne2017-03-051-2/+37
| | | | | | | | | | | | | | | | | | Split error messages for recursive method and overloaded method needs type into two (but did not solve the analysis which to show). Make CyclicReference type error construct corresponding error message.
| * | Explanations for recursive/cyclic type requirementsEnno Runne2017-03-041-0/+58
| |/
* | Add FatalError from scala.reflectGuillaume Martres2017-03-081-2/+1
| |
* | Remove unused scala.reflect importsGuillaume Martres2017-03-071-1/+0
| |
* | FixesMartin Odersky2017-03-051-3/+0
|/ | | | | (1) Drop unused error message (2) Drop test which is now illegal
* Merge pull request #2028 from ennru/ennru_AnnotatedPrimaryConstructorRequiresFelix Mulder2017-03-011-0/+14
|\ | | | | Change 'private, protected, or this expected' to Message
| * Change 'private, protected, or this expected' to MessageEnno Runne2017-02-231-0/+14
| |
* | Fix import which produces flakey test resultsMartin Odersky2017-02-251-1/+1
|/ | | | | Previous import gave test errors under eclipse. Probably due to some stray directory on the classpath.
* Merge pull request #2015 from dotty-staging/add-pf-overloadingodersky2017-02-231-0/+0
|\ | | | | Add overloading support for case-closures
| * Extend argument pretyping to case-closuresMartin Odersky2017-02-211-0/+0
| |
* | Merge pull request #2012 from ennru/ennru_CantInstantiateAbstractFelix Mulder2017-02-221-0/+39
|\ \ | | | | | | Change 'is abstract; cannot be instantiated' to Message
| * | Change 'is abstract; cannot be instantiated' to MessageEnno Runne2017-02-201-0/+39
| |/
* | Fix test ^ 2Martin Odersky2017-02-211-1/+1
| |