aboutsummaryrefslogtreecommitdiff
path: root/test/dotty
Commit message (Collapse)AuthorAgeFilesLines
* Make partest run in parallelMartin Odersky2015-07-061-1/+1
|
* Turn global vars into valsMartin Odersky2015-07-061-1/+1
| | | | Some globally accessible vars were never updated; should be vals.
* Fix rebase breakage around reporters.Martin Odersky2015-06-291-2/+4
| | | | | Reporters are part of the context which is passed into a compiler run. Passing them as a separate option is an unnecessary complication.
* Partest 3/3: Proper compiler output redirectionvsalvis2015-06-243-26/+29
|
* Fix --show-diff for partestvsalvis2015-05-271-1/+20
|
* Update-check option for partest, added "do not edit" headervsalvis2015-05-221-5/+49
|
* Less verbose partest with compiler output redirected, better --verbose outputvsalvis2015-05-222-31/+35
|
* Partest command line options (same as scala) useable from sbtvsalvis2015-05-131-5/+8
|
* Better documentation for partest dottyJar optionvsalvis2015-05-121-1/+3
|
* Run tests for partestvsalvis2015-05-121-7/+32
|
* Partest for Dotty with pos tests and neg tests with error countvsalvis2015-04-173-0/+255
|
* Test case for TreeInfo#defPathJason Zaugg2014-03-161-0/+30
I'm about to refactor that method in terms of a TreeAccumulator. Note that I've packaged the test case in `dotty.tools.dotc.ast` I believe this is the best approach for organizing unit tests: the import tax is minimized, and use of relative imports is made less fragile by avoiding creating new packages to test code. I'll reorganize the other unit tests like this if others agree.