andi
04/28/2021, 1:43 PMscaventz
04/28/2021, 1:47 PMdmitriy.novozhilov
04/28/2021, 2:03 PM:js:js.tests
moduleandi
04/28/2021, 4:42 PM...BoxTestGenerated.java
. Am I missing something obvious?dmitriy.novozhilov
04/28/2021, 5:39 PM./gradlew generateTests
or Generate Tests
run configurationandi
04/28/2021, 9:32 PM:js:js.tests:test
. However, if I run :compilerTest
I get quite a few failing test ("JDK_15 is not set"). Is this a new requirement that was added? I also tried to install jdk 15 quickly and running the test again, but this seems to cause even more failing tests...
I'll give it another try tomorrowdmitriy.novozhilov
04/29/2021, 7:09 AMandi
04/29/2021, 9:07 AM:compilerTest
ran fine on master
. I still get a few failing tests like "CodeConformanceTest.testNoBadSubstringsInProjectCode" or "CompilerDaemonTest.testDaemonAutoshutdownOnIdle", but I assume these can be ignored. I'll :compilerTest
my change now, and then open the PRdmitriy.novozhilov
04/29/2021, 9:14 AMCodeConformanceTest.testNoBadSubstringsInProjectCode
actually checks that code in repo satisfies our code style, so it's better to fix it (probably you've added @author
doc or something similar)andi
04/29/2021, 9:20 AM:compilerTest
against the master branch to verify that my overall setup is correct. So my changes were not in yet. The only files added/with a diff to master were libraries/kotlin.test/js/it/package-lock.json
(was generated by some setup) and gradle/wrapper/gradle-wrapper.properties
where I disabled distributionSha256Sum
andi
04/29/2021, 9:46 AM:compilerTest
just finished for my branch and lead to the same failing tests I had with the master branch. Now I can also check what makes these tests fail:
• testNoBadSubstringsInProjectCode
fails because of "@author" in ./js/js.tests/build/node_modules/mocha/mocha.js
• testThirdPartyCopyrights
fails because of multiple files in js/js.tests/build/node_modules/...
So all regarding build artifacts that should be unrelatedandi
04/29/2021, 10:09 AM