aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Optimize hashCode computationMartin Odersky2017-03-312-6/+6
| | | | Also, update check file.
* Make case class hashCode take class into accountMartin Odersky2017-03-301-2/+2
| | | | | | | | | Previously, elements of the following classes had the same hash code: case class A() case class B() Now they are distinguished.
* Fix typo in `ParallelTesting.scala`Felix Mulder2017-03-301-1/+1
|
* Merge pull request #2148 from dotty-staging/topic/fix-#2147Nicolas Stucki2017-03-307-4/+42
|\ | | | | Fix #2147: redirect both java and scala std out/err
| * Fix #2147: redirect both java and scala std out/errFelix Mulder2017-03-297-4/+42
|/
* Fix documentation deployment post new drone.ymlFelix Mulder2017-03-291-1/+1
|
* Merge pull request #2125 from dotty-staging/topic/kill-partestFelix Mulder2017-03-2951-236/+1868
|\ | | | | Operation Kill Partest (part 1)
| * Revert CI memory changesFelix Mulder2017-03-292-2/+2
| | | | | | | | | | It is necessary to do this in a new commit because of having to make sure that the signed drone file is current
| * Make summary report come at the end of test suiteFelix Mulder2017-03-294-21/+84
| |
| * Fix test reporting for exceptions in compilerFelix Mulder2017-03-291-40/+45
| |
| * Preserve stack trace when invoking main in run testsFelix Mulder2017-03-291-4/+8
| |
| * Add test to check failure of non-tail recursiveFelix Mulder2017-03-292-1/+12
| |
| * Make run tests run even if there isn't a check fileFelix Mulder2017-03-291-38/+46
| |
| * Address reviewer feedback on #2125Felix Mulder2017-03-295-251/+234
| |
| * Add documentation to ParallelTestingFelix Mulder2017-03-291-2/+247
| |
| * Add test filtering via `filterTest <regex>`Felix Mulder2017-03-297-32/+68
| |
| * Restore partest and enable it to run alongside new partestFelix Mulder2017-03-299-3/+1568
| |
| * Move varargs tests to top-level pos and negFelix Mulder2017-03-298-3/+3
| |
| * Add testing of new test frameworkFelix Mulder2017-03-2913-49/+188
| |
| * 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-296-63/+108
| |
| * Throw on timeoutFelix Mulder2017-03-291-2/+3
| |
| * Remove verbose prints in dottydoc testsFelix Mulder2017-03-292-7/+41
| |
| * Disable interactive mode in CIFelix Mulder2017-03-293-1/+7
| |
| * Fix tasty bootstrapFelix Mulder2017-03-293-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-2910-1205/+34
| |
| * 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-292-13/+13
| |
| * Add run testing capabilitiesFelix Mulder2017-03-299-92/+142
| |
| * 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-293-4/+47
| |
| * Parallelize compilation runs for ParallelTesting infraFelix Mulder2017-03-291-27/+92
| |
| * Prefix out directory with name of testFelix Mulder2017-03-291-1/+6
| |
| * Fix i851.java not being valid javaFelix Mulder2017-03-291-1/+1
| |
| * 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
|/
* Merge pull request #2139 from dotty-staging/fix/false-companionGuillaume Martres2017-03-286-3/+39
|\ | | | | Fix #2137: Create dummy companions for top-level objects without a real one
| * Namer#createCompanionLinks: avoid using denotNamedGuillaume Martres2017-03-241-4/+4
| | | | | | | | | | | | | | | | | | | | | | The previous commit introduced two new usages of `denotNamed` which broke tests/run/t1987b because `denotNamed` indirectly calls `packageObj` which caches the package object, except that at this point the package object is not yet entered, so the cache was incorrect. We fix this by using `effectiveScope.lookup` instead since we only need to look into the current scope, this is also true for the two existing usage of `denotNamed` in `createCompanionLinks` so they were also replaced by `effectiveScope.lookup`.
| * Fix #2137: Create dummy companions for top-level objects without a real oneGuillaume Martres2017-03-235-0/+36
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously, we sometimes ended up forcing a companion class symbol from a previous run or from the classpath which lead to weird issues like in `false-companion`. Even if we end up not forcing such a symbol, its presence can still lead to issue: before this commit incremental compilation of `dotty-compiler-bootstrapped` was broken because we recorded a false dependency on the non-bootstrapped `dotty-compiler` jar. The added test is currently marked pending because it does not work with JUnit (which doesn't handle separate compilation), only partest. I didn't managed to get it to work right, and this won't be necessary once our testing framework is overhauled by https://github.com/lampepfl/dotty/pull/2125 anyway, so I'll just have to remember to enable this test afterwards.
| * Revert "sbt.ExtractDependencies: avoid false dependencies"Guillaume Martres2017-03-231-1/+1
| | | | | | | | | | | | | | | | | | This reverts commit 57641b9c7447fa0a6f1f47352dffb4c56c560b6a. Using `Type#select` instead of `Type#member` turned out to not help at all in avoiding false dependencies, you can still get a symbol whose denotation does not reallyExists. A proper fix for this issue is contained in the next commit.