You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stanbol.apache.org by "Rene Kapusta (JIRA)" <ji...@apache.org> on 2011/02/02 12:07:29 UTC

[jira] Created: (STANBOL-65) maven build error running tests

maven build error running tests
-------------------------------

                 Key: STANBOL-65
                 URL: https://issues.apache.org/jira/browse/STANBOL-65
             Project: Stanbol
          Issue Type: Test
          Components: KReS
         Environment: Ubuntu
            Reporter: Rene Kapusta
            Priority: Minor


-------------------------------------------------------
 T E S T S
-------------------------------------------------------
Running eu.iksproject.kres.reasoners.KReSRunReasonerTest
:::::::::::::::: consistency check true
:::::::::::::::: consistency check true
:::::::::::::::: consistency check true
:::::::::::::::: consistency check true
Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.259 sec
Running eu.iksproject.kres.reasoners.KReSRunSPARQLTest
Tests run: 4, Failures: 0, Errors: 4, Skipped: 0, Time elapsed: 0.145 sec <<< FAILURE!
Running eu.iksproject.kres.reasoners.KReSRunRulesTest
Tests run: 4, Failures: 0, Errors: 4, Skipped: 0, Time elapsed: 0.074 sec <<< FAILURE!

Results :

Tests in error: 
  testGetSPARQLprefix(eu.iksproject.kres.reasoners.KReSRunSPARQLTest)
  testAddSPARQLprefix(eu.iksproject.kres.reasoners.KReSRunSPARQLTest)
  testRemoveSPARQLprefix(eu.iksproject.kres.reasoners.KReSRunSPARQLTest)
  testRunSPARQL(eu.iksproject.kres.reasoners.KReSRunSPARQLTest)
  testRunRulesReasoner_OWLOntology_1(eu.iksproject.kres.reasoners.KReSRunRulesTest)
  testRunRulesReasoner_0args_1(eu.iksproject.kres.reasoners.KReSRunRulesTest)
  testRunRulesReasoner_OWLOntology_2(eu.iksproject.kres.reasoners.KReSRunRulesTest)
  testRunRulesReasoner_0args_2(eu.iksproject.kres.reasoners.KReSRunRulesTest)

Tests run: 13, Failures: 0, Errors: 8, Skipped: 0

[INFO] ------------------------------------------------------------------------
[ERROR] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] There are test failures.


-- 
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Resolved: (STANBOL-65) maven build error running tests

Posted by "Concetto Elvio Bonafede (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/STANBOL-65?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Concetto Elvio Bonafede resolved STANBOL-65.
--------------------------------------------

    Resolution: Fixed

The problem is the same of STANBOL-35. There was a conflict launched when the test methods tried access to classes of slf4j due to library slf4j-log4j version 1.5.6. In fact the slf4j used is of version 1.5.2. Moreover was needed also adding the library slf4j-simple (version 1.5.2) among test libraries.
These two changes involve only the pom.xml file of the package eu.iksproject.kres.reasoner.

The changes are:

<exclusions>
		  <exclusion>
		   <artifactId>slf4j-log4j12</artifactId>
		   <groupId>org.slf4j</groupId>
		  </exclusion>
</exclusions>

<dependency>
	  <groupId>org.slf4j</groupId>
	  <artifactId>slf4j-simple</artifactId>
	  <version>1.5.2</version>
	  <scope>test</scope>
</dependency> 

> maven build error running tests
> -------------------------------
>
>                 Key: STANBOL-65
>                 URL: https://issues.apache.org/jira/browse/STANBOL-65
>             Project: Stanbol
>          Issue Type: Test
>          Components: KReS
>         Environment: Ubuntu
>            Reporter: Rene Kapusta
>            Priority: Minor
>              Labels: build-failure, maven, testsuite
>
> -------------------------------------------------------
>  T E S T S
> -------------------------------------------------------
> Running eu.iksproject.kres.reasoners.KReSRunReasonerTest
> :::::::::::::::: consistency check true
> :::::::::::::::: consistency check true
> :::::::::::::::: consistency check true
> :::::::::::::::: consistency check true
> Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.259 sec
> Running eu.iksproject.kres.reasoners.KReSRunSPARQLTest
> Tests run: 4, Failures: 0, Errors: 4, Skipped: 0, Time elapsed: 0.145 sec <<< FAILURE!
> Running eu.iksproject.kres.reasoners.KReSRunRulesTest
> Tests run: 4, Failures: 0, Errors: 4, Skipped: 0, Time elapsed: 0.074 sec <<< FAILURE!
> Results :
> Tests in error: 
>   testGetSPARQLprefix(eu.iksproject.kres.reasoners.KReSRunSPARQLTest)
>   testAddSPARQLprefix(eu.iksproject.kres.reasoners.KReSRunSPARQLTest)
>   testRemoveSPARQLprefix(eu.iksproject.kres.reasoners.KReSRunSPARQLTest)
>   testRunSPARQL(eu.iksproject.kres.reasoners.KReSRunSPARQLTest)
>   testRunRulesReasoner_OWLOntology_1(eu.iksproject.kres.reasoners.KReSRunRulesTest)
>   testRunRulesReasoner_0args_1(eu.iksproject.kres.reasoners.KReSRunRulesTest)
>   testRunRulesReasoner_OWLOntology_2(eu.iksproject.kres.reasoners.KReSRunRulesTest)
>   testRunRulesReasoner_0args_2(eu.iksproject.kres.reasoners.KReSRunRulesTest)
> Tests run: 13, Failures: 0, Errors: 8, Skipped: 0
> [INFO] ------------------------------------------------------------------------
> [ERROR] BUILD FAILURE
> [INFO] ------------------------------------------------------------------------
> [INFO] There are test failures.

-- 
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Commented: (STANBOL-65) maven build error running tests

Posted by "Fabian Christ (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/STANBOL-65?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12997717#comment-12997717 ] 

Fabian Christ commented on STANBOL-65:
--------------------------------------

STANBOL-35 seems to be resolved, is this still an open issue?

> maven build error running tests
> -------------------------------
>
>                 Key: STANBOL-65
>                 URL: https://issues.apache.org/jira/browse/STANBOL-65
>             Project: Stanbol
>          Issue Type: Test
>          Components: KReS
>         Environment: Ubuntu
>            Reporter: Rene Kapusta
>            Priority: Minor
>              Labels: build-failure, maven, testsuite
>
> -------------------------------------------------------
>  T E S T S
> -------------------------------------------------------
> Running eu.iksproject.kres.reasoners.KReSRunReasonerTest
> :::::::::::::::: consistency check true
> :::::::::::::::: consistency check true
> :::::::::::::::: consistency check true
> :::::::::::::::: consistency check true
> Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.259 sec
> Running eu.iksproject.kres.reasoners.KReSRunSPARQLTest
> Tests run: 4, Failures: 0, Errors: 4, Skipped: 0, Time elapsed: 0.145 sec <<< FAILURE!
> Running eu.iksproject.kres.reasoners.KReSRunRulesTest
> Tests run: 4, Failures: 0, Errors: 4, Skipped: 0, Time elapsed: 0.074 sec <<< FAILURE!
> Results :
> Tests in error: 
>   testGetSPARQLprefix(eu.iksproject.kres.reasoners.KReSRunSPARQLTest)
>   testAddSPARQLprefix(eu.iksproject.kres.reasoners.KReSRunSPARQLTest)
>   testRemoveSPARQLprefix(eu.iksproject.kres.reasoners.KReSRunSPARQLTest)
>   testRunSPARQL(eu.iksproject.kres.reasoners.KReSRunSPARQLTest)
>   testRunRulesReasoner_OWLOntology_1(eu.iksproject.kres.reasoners.KReSRunRulesTest)
>   testRunRulesReasoner_0args_1(eu.iksproject.kres.reasoners.KReSRunRulesTest)
>   testRunRulesReasoner_OWLOntology_2(eu.iksproject.kres.reasoners.KReSRunRulesTest)
>   testRunRulesReasoner_0args_2(eu.iksproject.kres.reasoners.KReSRunRulesTest)
> Tests run: 13, Failures: 0, Errors: 8, Skipped: 0
> [INFO] ------------------------------------------------------------------------
> [ERROR] BUILD FAILURE
> [INFO] ------------------------------------------------------------------------
> [INFO] There are test failures.

-- 
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Commented: (STANBOL-65) maven build error running tests

Posted by "Concetto Elvio Bonafede (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/STANBOL-65?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12995804#comment-12995804 ] 

Concetto Elvio Bonafede commented on STANBOL-65:
------------------------------------------------

This problem is the same of STANBOL-35. To solve the errors has been excluded slf4j-log4j12 version 1.5.6 and added slf4j-simple version 1.5.2 to the test library.

> maven build error running tests
> -------------------------------
>
>                 Key: STANBOL-65
>                 URL: https://issues.apache.org/jira/browse/STANBOL-65
>             Project: Stanbol
>          Issue Type: Test
>          Components: KReS
>         Environment: Ubuntu
>            Reporter: Rene Kapusta
>            Priority: Minor
>              Labels: build-failure, maven, testsuite
>
> -------------------------------------------------------
>  T E S T S
> -------------------------------------------------------
> Running eu.iksproject.kres.reasoners.KReSRunReasonerTest
> :::::::::::::::: consistency check true
> :::::::::::::::: consistency check true
> :::::::::::::::: consistency check true
> :::::::::::::::: consistency check true
> Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.259 sec
> Running eu.iksproject.kres.reasoners.KReSRunSPARQLTest
> Tests run: 4, Failures: 0, Errors: 4, Skipped: 0, Time elapsed: 0.145 sec <<< FAILURE!
> Running eu.iksproject.kres.reasoners.KReSRunRulesTest
> Tests run: 4, Failures: 0, Errors: 4, Skipped: 0, Time elapsed: 0.074 sec <<< FAILURE!
> Results :
> Tests in error: 
>   testGetSPARQLprefix(eu.iksproject.kres.reasoners.KReSRunSPARQLTest)
>   testAddSPARQLprefix(eu.iksproject.kres.reasoners.KReSRunSPARQLTest)
>   testRemoveSPARQLprefix(eu.iksproject.kres.reasoners.KReSRunSPARQLTest)
>   testRunSPARQL(eu.iksproject.kres.reasoners.KReSRunSPARQLTest)
>   testRunRulesReasoner_OWLOntology_1(eu.iksproject.kres.reasoners.KReSRunRulesTest)
>   testRunRulesReasoner_0args_1(eu.iksproject.kres.reasoners.KReSRunRulesTest)
>   testRunRulesReasoner_OWLOntology_2(eu.iksproject.kres.reasoners.KReSRunRulesTest)
>   testRunRulesReasoner_0args_2(eu.iksproject.kres.reasoners.KReSRunRulesTest)
> Tests run: 13, Failures: 0, Errors: 8, Skipped: 0
> [INFO] ------------------------------------------------------------------------
> [ERROR] BUILD FAILURE
> [INFO] ------------------------------------------------------------------------
> [INFO] There are test failures.

-- 
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira