Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[n4js-dev] Failing tests with mvn clean test

Dear Colleagues,

I tried to run maven locally:

mvn clean test

and I got the following test failures summarized below.

Actually I run the test on GH-1409, but I got some errors on master as well. 

Could you run a branch build of my branch on Jenkins and see what is happening there?
Could you run these tests on your machine as well?

Cheers,
Jens



-------------------------------------------------------------------------------
Test set: org.eclipse.n4js.jsdoc2spec.adoc.JSDoc2AdocFullTest
-------------------------------------------------------------------------------
Tests run: 17, Failures: 12, Errors: 0, Skipped: 0, Time elapsed: 2.447 s

bspw. 

n4js#tests.org.eclipse.n4js.jsdoc2spec.tests.testresourcesADoc
	SpecSample10_TodoTags#src
vs.

n4js#git.n4js.tests.org.eclipse.n4js.jsdoc2spec.tests.testresourcesADoc
	SpecSample10_TodoTags#src

D.h. die Pfade stimmen nicht -- ist das ein Problem des Testsetups?!

-------------------------------------------------------------------------------
Test set: org.eclipse.n4js.jsdoc2spec.JSDoc2SpecTest
-------------------------------------------------------------------------------
Tests run: 16, Failures: 11, Errors: 0, Skipped: 0, Time elapsed: 0.348 s

Diese Tests kann ich leider nicht aus der IDE heraus ausführen... any ideas?
Auch hier scheint es sich im das gleiche Problem mit den Pfaden zu handeln.

-------------------------------------------------------------------------------
Test set: org.eclipse.n4js.transpiler.es5.xpect.tests.CompileAndExecuteTest
-------------------------------------------------------------------------------
Tests run: 313, Failures: 4, Errors: 0, Skipped: 6, Time elapsed: 187.611 s
testdata/annotations/IDEBUG_246_DescriptionWithSingleQuote.n4js.xt
testdata/annotations/IDEBUG_246_DescriptionWithRealWorldExample.n4js.xt
testdata/annotations/IDEBUG_246_DescriptionWithSingleQuoteUnicode.n4js.xt
testdata/annotations/IDEBUG_246_DescriptionWithSingleQuoteEscaped.n4js.xt

In allen Fällen wird das einfache Hochkomma fälschlich mit "\" ausgeben.

-------------------------------------------------------------------------------
Test set: org.eclipse.n4js.bugreports.tests.N4JSBugreportTest
-------------------------------------------------------------------------------
Tests run: 730, Failures: 1, Errors: 0, Skipped: 1, Time elapsed: 43.646 s 
bugreports-tests/IDEBUG_0246_AnnotationsWithApostropheInStringDetail.n4js.xt

Ähnliches Problem wie oben: (expected)
N4Annotation { name: 'Description', details: [ 'I\'m a real cool method' ] }
vs. (acdtual)
N4Annotation { name: 'Description', details: [ "I'm a real cool method" ] }

-------------------------------------------------------------------------------
und dann noch folgender Fehler:

Failed to execute goal org.apache.maven.plugins:maven-dependency-plugin:3.1.1:copy (copy) on project org.eclipse.n4js.hlc.integrationtests: Unable to find/resolve artifact.: Could not find artifact org.eclipse.n4js:org.eclipse.n4js.hlc:jar:jar-with-dependencies:0.0.1-SNAPSHOT in sonatype_snapshots (https://oss.sonatype.org/content/repositories/snapshots/



Back to the top