You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@uima.apache.org by "Florent ANDRE (JIRA)" <de...@uima.apache.org> on 2011/01/14 00:48:46 UTC

[jira] Created: (UIMA-2003) WhitespaceTokenizerPerfTest failure in sandbox Last Changed Rev: 1056535

WhitespaceTokenizerPerfTest failure in sandbox Last Changed Rev: 1056535
------------------------------------------------------------------------

                 Key: UIMA-2003
                 URL: https://issues.apache.org/jira/browse/UIMA-2003
             Project: UIMA
          Issue Type: Bug
          Components: Sandbox
            Reporter: Florent ANDRE


=== error

-------------------------------------------------------
 T E S T S
-------------------------------------------------------
Running org.apache.uima.annotator.WhitespaceTokenizerPerfTest
Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 0.046 sec <<< FAILURE!
Running org.apache.uima.annotator.WhitespaceTokTest
Tests run: 3, Failures: 0, Errors: 3, Skipped: 0, Time elapsed: 0.181 sec <<< FAILURE!

Results :

Failed tests: 
  testEnglishProcessingTest(org.apache.uima.annotator.WhitespaceTokenizerPerfTest)

Tests in error: 
  testAnnotatorSpecial(org.apache.uima.annotator.WhitespaceTokTest)
  testAnnotatorEnglish(org.apache.uima.annotator.WhitespaceTokTest)
  testAnnotatorTabs(org.apache.uima.annotator.WhitespaceTokTest)

Tests run: 4, Failures: 1, Errors: 3, Skipped: 0

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

== command : 

- cd sandbox/aggregate-addons
- mvn install

== svn info : 
URL: http://svn.apache.org/repos/asf/uima/sandbox/trunk
Repository Root: http://svn.apache.org/repos/asf
Repository UUID: 13f79535-47bb-0310-9956-ffa450edef68
Revision: 1058796
Node Kind: directory
Schedule: normal
Last Changed Author: tommaso
Last Changed Rev: 1056535
Last Changed Date: 2011-01-07 23:15:36 +0100 (Fri, 07 Jan 2011)




-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (UIMA-2003) WhitespaceTokenizerPerfTest failure in sandbox Last Changed Rev: 1056535

Posted by "Marshall Schor (JIRA)" <de...@uima.apache.org>.
    [ https://issues.apache.org/jira/browse/UIMA-2003?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12981747#action_12981747 ] 

Marshall Schor commented on UIMA-2003:
--------------------------------------

I can't seem to reproduce this failure (on Windows, running Sun Java 1.5.0_21).  Can you post: what version of Maven you're using, what version / vendor of Java you're using, what OS, and what the error is (look in the Whitespace Tokenizer project, under target/ for a surefire directory and scan the contents to find the actual error stack trace, etc.).

> WhitespaceTokenizerPerfTest failure in sandbox Last Changed Rev: 1056535
> ------------------------------------------------------------------------
>
>                 Key: UIMA-2003
>                 URL: https://issues.apache.org/jira/browse/UIMA-2003
>             Project: UIMA
>          Issue Type: Bug
>          Components: Sandbox
>            Reporter: Florent ANDRE
>
> === error
> -------------------------------------------------------
>  T E S T S
> -------------------------------------------------------
> Running org.apache.uima.annotator.WhitespaceTokenizerPerfTest
> Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 0.046 sec <<< FAILURE!
> Running org.apache.uima.annotator.WhitespaceTokTest
> Tests run: 3, Failures: 0, Errors: 3, Skipped: 0, Time elapsed: 0.181 sec <<< FAILURE!
> Results :
> Failed tests: 
>   testEnglishProcessingTest(org.apache.uima.annotator.WhitespaceTokenizerPerfTest)
> Tests in error: 
>   testAnnotatorSpecial(org.apache.uima.annotator.WhitespaceTokTest)
>   testAnnotatorEnglish(org.apache.uima.annotator.WhitespaceTokTest)
>   testAnnotatorTabs(org.apache.uima.annotator.WhitespaceTokTest)
> Tests run: 4, Failures: 1, Errors: 3, Skipped: 0
> [INFO] ------------------------------------------------------------------------
> [ERROR] BUILD FAILURE
> [INFO] ------------------------------------------------------------------------
> [INFO] There are test failures.
> == command : 
> - cd sandbox/aggregate-addons
> - mvn install
> == svn info : 
> URL: http://svn.apache.org/repos/asf/uima/sandbox/trunk
> Repository Root: http://svn.apache.org/repos/asf
> Repository UUID: 13f79535-47bb-0310-9956-ffa450edef68
> Revision: 1058796
> Node Kind: directory
> Schedule: normal
> Last Changed Author: tommaso
> Last Changed Rev: 1056535
> Last Changed Date: 2011-01-07 23:15:36 +0100 (Fri, 07 Jan 2011)

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (UIMA-2003) WhitespaceTokenizerPerfTest failure in sandbox Last Changed Rev: 1056535

Posted by "Marshall Schor (JIRA)" <de...@uima.apache.org>.
    [ https://issues.apache.org/jira/browse/UIMA-2003?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13003550#comment-13003550 ] 

Marshall Schor commented on UIMA-2003:
--------------------------------------

Other things to look at, if Maven version upgrade doesn't work:

The way this is supposed to work:

Running the test involves running the maven "process-resources" phase, which should be copying the desc/WhitespaceTokenizer.xml to the projects target/classes directory.  After you see this failure, can you check that directory to see if has this file there?  If not, then run debug this by:

1) running mvn clean   - should remove the target/ directory

2) run mvn compile -X

This should run maven with debugging output, and you should see some output that looks like:

[INFO] Copying 1 resource
[DEBUG] file WhitespaceTokenizer.xml has a filtered file extension
[DEBUG] copy D:\mavenAlign\sandbox-trunk-data\WhitespaceTokenizer\desc\WhitespaceTokenizer.xml to D:\mavenAlign\sandbox-trunk-data\WhitespaceTokenizer\target\classes\WhitespaceToke
nizer.xml

These lines are the result of this part of the pom:
{noformat}
<!-- add the contents of desc if it exists to the jar.  
                   This puts the things like the WhitespaceTokenizer.xml file into the Jar
                   and makes it easier for users to run this, without installing a pear. 
                   The Tagger project uses this technique, for instance -->
              <execution>
                <id>copy desc so its contents can be found in Jar</id>
                <goals><goal>copy-resources</goal></goals>
                <phase>process-resources</phase>  <!-- required -->
                <configuration>
                  <outputDirectory>${project.build.outputDirectory}</outputDirectory>
                  <resources>
                    <resource>
                      <directory>desc</directory>
                      <includes><include>**</include></includes>
                    </resource>
                  </resources>
                </configuration>
              </execution>
{noformat}

This part of the pom is in a profile that is triggered by the presence of the file:

{noformat}
      <activation>
        <file>
          <exists>marker-file-identifying-standard-pear</exists>
        </file>
      </activation>
{noformat}

Please insure this file exists in the WhitespaceTokenizer svn checkout.

Please let us know what you find out...

> WhitespaceTokenizerPerfTest failure in sandbox Last Changed Rev: 1056535
> ------------------------------------------------------------------------
>
>                 Key: UIMA-2003
>                 URL: https://issues.apache.org/jira/browse/UIMA-2003
>             Project: UIMA
>          Issue Type: Bug
>          Components: Sandbox
>            Reporter: Florent ANDRE
>
> === error
> -------------------------------------------------------
>  T E S T S
> -------------------------------------------------------
> Running org.apache.uima.annotator.WhitespaceTokenizerPerfTest
> Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 0.046 sec <<< FAILURE!
> Running org.apache.uima.annotator.WhitespaceTokTest
> Tests run: 3, Failures: 0, Errors: 3, Skipped: 0, Time elapsed: 0.181 sec <<< FAILURE!
> Results :
> Failed tests: 
>   testEnglishProcessingTest(org.apache.uima.annotator.WhitespaceTokenizerPerfTest)
> Tests in error: 
>   testAnnotatorSpecial(org.apache.uima.annotator.WhitespaceTokTest)
>   testAnnotatorEnglish(org.apache.uima.annotator.WhitespaceTokTest)
>   testAnnotatorTabs(org.apache.uima.annotator.WhitespaceTokTest)
> Tests run: 4, Failures: 1, Errors: 3, Skipped: 0
> [INFO] ------------------------------------------------------------------------
> [ERROR] BUILD FAILURE
> [INFO] ------------------------------------------------------------------------
> [INFO] There are test failures.
> == command : 
> - cd sandbox/aggregate-addons
> - mvn install
> == svn info : 
> URL: http://svn.apache.org/repos/asf/uima/sandbox/trunk
> Repository Root: http://svn.apache.org/repos/asf
> Repository UUID: 13f79535-47bb-0310-9956-ffa450edef68
> Revision: 1058796
> Node Kind: directory
> Schedule: normal
> Last Changed Author: tommaso
> Last Changed Rev: 1056535
> Last Changed Date: 2011-01-07 23:15:36 +0100 (Fri, 07 Jan 2011)

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

[jira] [Updated] (UIMA-2003) WhitespaceTokenizerPerfTest failure in sandbox Last Changed Rev: 1056535

Posted by "Tommaso Teofili (JIRA)" <de...@uima.apache.org>.
     [ https://issues.apache.org/jira/browse/UIMA-2003?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Tommaso Teofili updated UIMA-2003:
----------------------------------

    Fix Version/s: 2.3.1Addons

> WhitespaceTokenizerPerfTest failure in sandbox Last Changed Rev: 1056535
> ------------------------------------------------------------------------
>
>                 Key: UIMA-2003
>                 URL: https://issues.apache.org/jira/browse/UIMA-2003
>             Project: UIMA
>          Issue Type: Bug
>          Components: Sandbox
>            Reporter: Florent ANDRE
>             Fix For: 2.3.1Addons
>
>
> === error
> -------------------------------------------------------
>  T E S T S
> -------------------------------------------------------
> Running org.apache.uima.annotator.WhitespaceTokenizerPerfTest
> Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 0.046 sec <<< FAILURE!
> Running org.apache.uima.annotator.WhitespaceTokTest
> Tests run: 3, Failures: 0, Errors: 3, Skipped: 0, Time elapsed: 0.181 sec <<< FAILURE!
> Results :
> Failed tests: 
>   testEnglishProcessingTest(org.apache.uima.annotator.WhitespaceTokenizerPerfTest)
> Tests in error: 
>   testAnnotatorSpecial(org.apache.uima.annotator.WhitespaceTokTest)
>   testAnnotatorEnglish(org.apache.uima.annotator.WhitespaceTokTest)
>   testAnnotatorTabs(org.apache.uima.annotator.WhitespaceTokTest)
> Tests run: 4, Failures: 1, Errors: 3, Skipped: 0
> [INFO] ------------------------------------------------------------------------
> [ERROR] BUILD FAILURE
> [INFO] ------------------------------------------------------------------------
> [INFO] There are test failures.
> == command : 
> - cd sandbox/aggregate-addons
> - mvn install
> == svn info : 
> URL: http://svn.apache.org/repos/asf/uima/sandbox/trunk
> Repository Root: http://svn.apache.org/repos/asf
> Repository UUID: 13f79535-47bb-0310-9956-ffa450edef68
> Revision: 1058796
> Node Kind: directory
> Schedule: normal
> Last Changed Author: tommaso
> Last Changed Rev: 1056535
> Last Changed Date: 2011-01-07 23:15:36 +0100 (Fri, 07 Jan 2011)

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

[jira] Commented: (UIMA-2003) WhitespaceTokenizerPerfTest failure in sandbox Last Changed Rev: 1056535

Posted by "Florent ANDRE (JIRA)" <de...@uima.apache.org>.
    [ https://issues.apache.org/jira/browse/UIMA-2003?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13003658#comment-13003658 ] 

Florent ANDRE commented on UIMA-2003:
-------------------------------------

Thanks Marshall, upgrade to mvn3 solve the problem. 

What's strange is maven don't complain about version problem.

What's to be careful is, for now mvn2, is the default version that come with ubuntu 10.04 (apt-get install).

Thanks for your comments and help.
Have a good day.

> WhitespaceTokenizerPerfTest failure in sandbox Last Changed Rev: 1056535
> ------------------------------------------------------------------------
>
>                 Key: UIMA-2003
>                 URL: https://issues.apache.org/jira/browse/UIMA-2003
>             Project: UIMA
>          Issue Type: Bug
>          Components: Sandbox
>            Reporter: Florent ANDRE
>
> === error
> -------------------------------------------------------
>  T E S T S
> -------------------------------------------------------
> Running org.apache.uima.annotator.WhitespaceTokenizerPerfTest
> Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 0.046 sec <<< FAILURE!
> Running org.apache.uima.annotator.WhitespaceTokTest
> Tests run: 3, Failures: 0, Errors: 3, Skipped: 0, Time elapsed: 0.181 sec <<< FAILURE!
> Results :
> Failed tests: 
>   testEnglishProcessingTest(org.apache.uima.annotator.WhitespaceTokenizerPerfTest)
> Tests in error: 
>   testAnnotatorSpecial(org.apache.uima.annotator.WhitespaceTokTest)
>   testAnnotatorEnglish(org.apache.uima.annotator.WhitespaceTokTest)
>   testAnnotatorTabs(org.apache.uima.annotator.WhitespaceTokTest)
> Tests run: 4, Failures: 1, Errors: 3, Skipped: 0
> [INFO] ------------------------------------------------------------------------
> [ERROR] BUILD FAILURE
> [INFO] ------------------------------------------------------------------------
> [INFO] There are test failures.
> == command : 
> - cd sandbox/aggregate-addons
> - mvn install
> == svn info : 
> URL: http://svn.apache.org/repos/asf/uima/sandbox/trunk
> Repository Root: http://svn.apache.org/repos/asf
> Repository UUID: 13f79535-47bb-0310-9956-ffa450edef68
> Revision: 1058796
> Node Kind: directory
> Schedule: normal
> Last Changed Author: tommaso
> Last Changed Rev: 1056535
> Last Changed Date: 2011-01-07 23:15:36 +0100 (Fri, 07 Jan 2011)

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

[jira] Resolved: (UIMA-2003) WhitespaceTokenizerPerfTest failure in sandbox Last Changed Rev: 1056535

Posted by "Florent ANDRE (JIRA)" <de...@uima.apache.org>.
     [ https://issues.apache.org/jira/browse/UIMA-2003?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Florent ANDRE resolved UIMA-2003.
---------------------------------

    Resolution: Not A Problem

This bug appear with mvn2 be sure to have mvn3 (particularly on ubuntu 10.04 LTS)

> WhitespaceTokenizerPerfTest failure in sandbox Last Changed Rev: 1056535
> ------------------------------------------------------------------------
>
>                 Key: UIMA-2003
>                 URL: https://issues.apache.org/jira/browse/UIMA-2003
>             Project: UIMA
>          Issue Type: Bug
>          Components: Sandbox
>            Reporter: Florent ANDRE
>
> === error
> -------------------------------------------------------
>  T E S T S
> -------------------------------------------------------
> Running org.apache.uima.annotator.WhitespaceTokenizerPerfTest
> Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 0.046 sec <<< FAILURE!
> Running org.apache.uima.annotator.WhitespaceTokTest
> Tests run: 3, Failures: 0, Errors: 3, Skipped: 0, Time elapsed: 0.181 sec <<< FAILURE!
> Results :
> Failed tests: 
>   testEnglishProcessingTest(org.apache.uima.annotator.WhitespaceTokenizerPerfTest)
> Tests in error: 
>   testAnnotatorSpecial(org.apache.uima.annotator.WhitespaceTokTest)
>   testAnnotatorEnglish(org.apache.uima.annotator.WhitespaceTokTest)
>   testAnnotatorTabs(org.apache.uima.annotator.WhitespaceTokTest)
> Tests run: 4, Failures: 1, Errors: 3, Skipped: 0
> [INFO] ------------------------------------------------------------------------
> [ERROR] BUILD FAILURE
> [INFO] ------------------------------------------------------------------------
> [INFO] There are test failures.
> == command : 
> - cd sandbox/aggregate-addons
> - mvn install
> == svn info : 
> URL: http://svn.apache.org/repos/asf/uima/sandbox/trunk
> Repository Root: http://svn.apache.org/repos/asf
> Repository UUID: 13f79535-47bb-0310-9956-ffa450edef68
> Revision: 1058796
> Node Kind: directory
> Schedule: normal
> Last Changed Author: tommaso
> Last Changed Rev: 1056535
> Last Changed Date: 2011-01-07 23:15:36 +0100 (Fri, 07 Jan 2011)

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

[jira] Commented: (UIMA-2003) WhitespaceTokenizerPerfTest failure in sandbox Last Changed Rev: 1056535

Posted by "Marshall Schor (JIRA)" <de...@uima.apache.org>.
    [ https://issues.apache.org/jira/browse/UIMA-2003?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13003529#comment-13003529 ] 

Marshall Schor commented on UIMA-2003:
--------------------------------------

I'm guessing that this is a maven version issue.

We have a stanza in our maven which says:
  <prerequisites>
    <!-- 2.2.0 is broken when deploying - checksums invalid -->
    <!-- 2.2.1 doesn't work -->
    <maven>3.0</maven>
  </prerequisites>

I thought maven would complain if you used an earlier version, but I guess it doesn't.

I see from the above that you are using 2.2.1.

Can you try maven 3.0 or later and see if this problem goes away?


 

> WhitespaceTokenizerPerfTest failure in sandbox Last Changed Rev: 1056535
> ------------------------------------------------------------------------
>
>                 Key: UIMA-2003
>                 URL: https://issues.apache.org/jira/browse/UIMA-2003
>             Project: UIMA
>          Issue Type: Bug
>          Components: Sandbox
>            Reporter: Florent ANDRE
>
> === error
> -------------------------------------------------------
>  T E S T S
> -------------------------------------------------------
> Running org.apache.uima.annotator.WhitespaceTokenizerPerfTest
> Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 0.046 sec <<< FAILURE!
> Running org.apache.uima.annotator.WhitespaceTokTest
> Tests run: 3, Failures: 0, Errors: 3, Skipped: 0, Time elapsed: 0.181 sec <<< FAILURE!
> Results :
> Failed tests: 
>   testEnglishProcessingTest(org.apache.uima.annotator.WhitespaceTokenizerPerfTest)
> Tests in error: 
>   testAnnotatorSpecial(org.apache.uima.annotator.WhitespaceTokTest)
>   testAnnotatorEnglish(org.apache.uima.annotator.WhitespaceTokTest)
>   testAnnotatorTabs(org.apache.uima.annotator.WhitespaceTokTest)
> Tests run: 4, Failures: 1, Errors: 3, Skipped: 0
> [INFO] ------------------------------------------------------------------------
> [ERROR] BUILD FAILURE
> [INFO] ------------------------------------------------------------------------
> [INFO] There are test failures.
> == command : 
> - cd sandbox/aggregate-addons
> - mvn install
> == svn info : 
> URL: http://svn.apache.org/repos/asf/uima/sandbox/trunk
> Repository Root: http://svn.apache.org/repos/asf
> Repository UUID: 13f79535-47bb-0310-9956-ffa450edef68
> Revision: 1058796
> Node Kind: directory
> Schedule: normal
> Last Changed Author: tommaso
> Last Changed Rev: 1056535
> Last Changed Date: 2011-01-07 23:15:36 +0100 (Fri, 07 Jan 2011)

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

[jira] [Closed] (UIMA-2003) WhitespaceTokenizerPerfTest failure in sandbox Last Changed Rev: 1056535

Posted by "Tommaso Teofili (JIRA)" <de...@uima.apache.org>.
     [ https://issues.apache.org/jira/browse/UIMA-2003?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Tommaso Teofili closed UIMA-2003.
---------------------------------

    Resolution: Fixed

> WhitespaceTokenizerPerfTest failure in sandbox Last Changed Rev: 1056535
> ------------------------------------------------------------------------
>
>                 Key: UIMA-2003
>                 URL: https://issues.apache.org/jira/browse/UIMA-2003
>             Project: UIMA
>          Issue Type: Bug
>          Components: Sandbox
>            Reporter: Florent ANDRE
>             Fix For: 2.3.1Addons
>
>
> === error
> -------------------------------------------------------
>  T E S T S
> -------------------------------------------------------
> Running org.apache.uima.annotator.WhitespaceTokenizerPerfTest
> Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 0.046 sec <<< FAILURE!
> Running org.apache.uima.annotator.WhitespaceTokTest
> Tests run: 3, Failures: 0, Errors: 3, Skipped: 0, Time elapsed: 0.181 sec <<< FAILURE!
> Results :
> Failed tests: 
>   testEnglishProcessingTest(org.apache.uima.annotator.WhitespaceTokenizerPerfTest)
> Tests in error: 
>   testAnnotatorSpecial(org.apache.uima.annotator.WhitespaceTokTest)
>   testAnnotatorEnglish(org.apache.uima.annotator.WhitespaceTokTest)
>   testAnnotatorTabs(org.apache.uima.annotator.WhitespaceTokTest)
> Tests run: 4, Failures: 1, Errors: 3, Skipped: 0
> [INFO] ------------------------------------------------------------------------
> [ERROR] BUILD FAILURE
> [INFO] ------------------------------------------------------------------------
> [INFO] There are test failures.
> == command : 
> - cd sandbox/aggregate-addons
> - mvn install
> == svn info : 
> URL: http://svn.apache.org/repos/asf/uima/sandbox/trunk
> Repository Root: http://svn.apache.org/repos/asf
> Repository UUID: 13f79535-47bb-0310-9956-ffa450edef68
> Revision: 1058796
> Node Kind: directory
> Schedule: normal
> Last Changed Author: tommaso
> Last Changed Rev: 1056535
> Last Changed Date: 2011-01-07 23:15:36 +0100 (Fri, 07 Jan 2011)

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

[jira] Commented: (UIMA-2003) WhitespaceTokenizerPerfTest failure in sandbox Last Changed Rev: 1056535

Posted by "Florent ANDRE (JIRA)" <de...@uima.apache.org>.
    [ https://issues.apache.org/jira/browse/UIMA-2003?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13003470#comment-13003470 ] 

Florent ANDRE commented on UIMA-2003:
-------------------------------------

Hi you,

Sorry for the so long time to answer.

== Status ==

To be sure of remove any maven/svn related side effects, I :
- totally clean my mvn local repository
- svn update uimaj & sandbox.

So I have : 
- svn info uimaj : Last Changed Rev: 1077854
- svn info sanbox : Last Changed Rev: 1078825

Compilation : 
- cd uimaj/aggregate-uimaj ; mvn clean install : compilation OK
- cd sanbox/aggregate-addons ; mvn clean install : compilation ERROR (same as describe)

== Versions ==

- $lsb_release -a
LSB Version:	core-2.0-amd64:core-2.0-noarch:core-3.0-amd64:core-3.0-noarch:core-3.1-amd64:core-3.1-noarch:core-3.2-amd64:core-3.2-noarch:core-4.0-amd64:core-4.0-noarch:cxx-3.0-amd64:cxx-3.0-noarch:cxx-3.1-amd64:cxx-3.1-noarch:cxx-3.2-amd64:cxx-3.2-noarch:cxx-4.0-amd64:cxx-4.0-noarch:desktop-3.1-amd64:desktop-3.1-noarch:desktop-3.2-amd64:desktop-3.2-noarch:desktop-4.0-amd64:desktop-4.0-noarch:graphics-2.0-amd64:graphics-2.0-noarch:graphics-3.0-amd64:graphics-3.0-noarch:graphics-3.1-amd64:graphics-3.1-noarch:graphics-3.2-amd64:graphics-3.2-noarch:graphics-4.0-amd64:graphics-4.0-noarch:printing-3.2-amd64:printing-3.2-noarch:printing-4.0-amd64:printing-4.0-noarch:qt4-3.1-amd64:qt4-3.1-noarch
Distributor ID:	Ubuntu
Description:	Ubuntu 10.04.2 LTS
Release:	10.04
Codename:	lucid

- $java -version
java version "1.6.0_24"
Java(TM) SE Runtime Environment (build 1.6.0_24-b07)
Java HotSpot(TM) 64-Bit Server VM (build 19.1-b02, mixed mode)

- $mvn -version
Apache Maven 2.2.1 (rdebian-1)
Java version: 1.6.0_24
Java home: /usr/lib/jvm/java-6-sun-1.6.0.24/jre
Default locale: en_US, platform encoding: UTF-8
OS name: "linux" version: "2.6.35-7-generic" arch: "amd64" Family: "unix"

- svn --version
svn, version 1.6.6 (r40053)
   compiled Jan 14 2011, 23:50:38


== Error ==

******* Mvn std output ******
[INFO] Surefire report directory: /home/florent/devel/dev-others/uima/sources/rev-1078166/sandbox/WhitespaceTokenizer/target/surefire-reports

-------------------------------------------------------
 T E S T S
-------------------------------------------------------
Running org.apache.uima.annotator.WhitespaceTokenizerPerfTest
Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 0.085 sec <<< FAILURE!
Running org.apache.uima.annotator.WhitespaceTokTest
Tests run: 3, Failures: 0, Errors: 3, Skipped: 0, Time elapsed: 0.417 sec <<< FAILURE!

Results :

Failed tests: 
  testEnglishProcessingTest(org.apache.uima.annotator.WhitespaceTokenizerPerfTest)

Tests in error: 
  testAnnotatorSpecial(org.apache.uima.annotator.WhitespaceTokTest)
  testAnnotatorEnglish(org.apache.uima.annotator.WhitespaceTokTest)
  testAnnotatorTabs(org.apache.uima.annotator.WhitespaceTokTest)

Tests run: 4, Failures: 1, Errors: 3, Skipped: 0

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

Please refer to /home/florent/devel/dev-others/uima/sources/rev-1078166/sandbox/WhitespaceTokenizer/target/surefire-reports for the individual test results.



******** cat sandbox/WhitespaceTokenizer/target/surefire-reports/org.apache.uima.annotator.WhitespaceTokenizerPerfTest.txt ******

-------------------------------------------------------------------------------
Test set: org.apache.uima.annotator.WhitespaceTokenizerPerfTest
-------------------------------------------------------------------------------
Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 0.085 sec <<< FAILURE!
testEnglishProcessingTest(org.apache.uima.annotator.WhitespaceTokenizerPerfTest)  Time elapsed: 0.035 sec  <<< FAILURE!
junit.framework.AssertionFailedError
	at junit.framework.Assert.fail(Assert.java:47)
	at junit.framework.Assert.assertTrue(Assert.java:20)
	at junit.framework.Assert.assertNotNull(Assert.java:220)
	at junit.framework.Assert.assertNotNull(Assert.java:213)
	at org.apache.uima.test.junit_extension.AnnotatorPerformanceTester.runPerformanceTest(AnnotatorPerformanceTester.java:102)
	at org.apache.uima.annotator.WhitespaceTokenizerPerfTest.testEnglishProcessingTest(WhitespaceTokenizerPerfTest.java:46)



******** cat sandbox/WhitespaceTokenizer/target/surefire-reports/org.apache.uima.annotator.WhitespaceTokTest.txt  *******
-------------------------------------------------------------------------------
Test set: org.apache.uima.annotator.WhitespaceTokTest
-------------------------------------------------------------------------------
Tests run: 3, Failures: 0, Errors: 3, Skipped: 0, Time elapsed: 0.417 sec <<< FAILURE!
testAnnotatorSpecial(org.apache.uima.annotator.WhitespaceTokTest)  Time elapsed: 0.382 sec  <<< ERROR!
java.lang.NullPointerException
	at org.apache.uima.util.XMLInputSource.<init>(XMLInputSource.java:64)
	at org.apache.uima.test.junit_extension.AnnotatorTester.setup(AnnotatorTester.java:119)
	at org.apache.uima.test.junit_extension.AnnotatorTester.<init>(AnnotatorTester.java:89)
	at org.apache.uima.annotator.WhitespaceTokTest.setUp(WhitespaceTokTest.java:43)
	at junit.framework.TestCase.runBare(TestCase.java:125)
	at junit.framework.TestResult$1.protect(TestResult.java:106)
	at junit.framework.TestResult.runProtected(TestResult.java:124)
	at junit.framework.TestResult.run(TestResult.java:109)
	at junit.framework.TestCase.run(TestCase.java:118)
	at junit.framework.TestSuite.runTest(TestSuite.java:208)
	at junit.framework.TestSuite.run(TestSuite.java:203)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
	at java.lang.reflect.Method.invoke(Method.java:597)
	at org.apache.maven.surefire.junit.JUnitTestSet.execute(JUnitTestSet.java:213)
	at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.executeTestSet(AbstractDirectoryTestSuite.java:140)
	at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.execute(AbstractDirectoryTestSuite.java:127)
	at org.apache.maven.surefire.Surefire.run(Surefire.java:177)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
	at java.lang.reflect.Method.invoke(Method.java:597)
	at org.apache.maven.surefire.booter.SurefireBooter.runSuitesInProcess(SurefireBooter.java:345)
	at org.apache.maven.surefire.booter.SurefireBooter.main(SurefireBooter.java:1009)

testAnnotatorEnglish(org.apache.uima.annotator.WhitespaceTokTest)  Time elapsed: 0.004 sec  <<< ERROR!
java.lang.NullPointerException
	at org.apache.uima.util.XMLInputSource.<init>(XMLInputSource.java:64)
	at org.apache.uima.test.junit_extension.AnnotatorTester.setup(AnnotatorTester.java:119)
	at org.apache.uima.test.junit_extension.AnnotatorTester.<init>(AnnotatorTester.java:89)
	at org.apache.uima.annotator.WhitespaceTokTest.setUp(WhitespaceTokTest.java:43)
	at junit.framework.TestCase.runBare(TestCase.java:125)
	at junit.framework.TestResult$1.protect(TestResult.java:106)
	at junit.framework.TestResult.runProtected(TestResult.java:124)
	at junit.framework.TestResult.run(TestResult.java:109)
	at junit.framework.TestCase.run(TestCase.java:118)
	at junit.framework.TestSuite.runTest(TestSuite.java:208)
	at junit.framework.TestSuite.run(TestSuite.java:203)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
	at java.lang.reflect.Method.invoke(Method.java:597)
	at org.apache.maven.surefire.junit.JUnitTestSet.execute(JUnitTestSet.java:213)
	at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.executeTestSet(AbstractDirectoryTestSuite.java:140)
	at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.execute(AbstractDirectoryTestSuite.java:127)
	at org.apache.maven.surefire.Surefire.run(Surefire.java:177)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
	at java.lang.reflect.Method.invoke(Method.java:597)
	at org.apache.maven.surefire.booter.SurefireBooter.runSuitesInProcess(SurefireBooter.java:345)
	at org.apache.maven.surefire.booter.SurefireBooter.main(SurefireBooter.java:1009)

testAnnotatorTabs(org.apache.uima.annotator.WhitespaceTokTest)  Time elapsed: 0.003 sec  <<< ERROR!
java.lang.NullPointerException
	at org.apache.uima.util.XMLInputSource.<init>(XMLInputSource.java:64)
	at org.apache.uima.test.junit_extension.AnnotatorTester.setup(AnnotatorTester.java:119)
	at org.apache.uima.test.junit_extension.AnnotatorTester.<init>(AnnotatorTester.java:89)
	at org.apache.uima.annotator.WhitespaceTokTest.setUp(WhitespaceTokTest.java:43)
	at junit.framework.TestCase.runBare(TestCase.java:125)
	at junit.framework.TestResult$1.protect(TestResult.java:106)
	at junit.framework.TestResult.runProtected(TestResult.java:124)
	at junit.framework.TestResult.run(TestResult.java:109)
	at junit.framework.TestCase.run(TestCase.java:118)
	at junit.framework.TestSuite.runTest(TestSuite.java:208)
	at junit.framework.TestSuite.run(TestSuite.java:203)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
	at java.lang.reflect.Method.invoke(Method.java:597)
	at org.apache.maven.surefire.junit.JUnitTestSet.execute(JUnitTestSet.java:213)
	at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.executeTestSet(AbstractDirectoryTestSuite.java:140)
	at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.execute(AbstractDirectoryTestSuite.java:127)
	at org.apache.maven.surefire.Surefire.run(Surefire.java:177)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
	at java.lang.reflect.Method.invoke(Method.java:597)
	at org.apache.maven.surefire.booter.SurefireBooter.runSuitesInProcess(SurefireBooter.java:345)
	at org.apache.maven.surefire.booter.SurefireBooter.main(SurefireBooter.java:1009)




> WhitespaceTokenizerPerfTest failure in sandbox Last Changed Rev: 1056535
> ------------------------------------------------------------------------
>
>                 Key: UIMA-2003
>                 URL: https://issues.apache.org/jira/browse/UIMA-2003
>             Project: UIMA
>          Issue Type: Bug
>          Components: Sandbox
>            Reporter: Florent ANDRE
>
> === error
> -------------------------------------------------------
>  T E S T S
> -------------------------------------------------------
> Running org.apache.uima.annotator.WhitespaceTokenizerPerfTest
> Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 0.046 sec <<< FAILURE!
> Running org.apache.uima.annotator.WhitespaceTokTest
> Tests run: 3, Failures: 0, Errors: 3, Skipped: 0, Time elapsed: 0.181 sec <<< FAILURE!
> Results :
> Failed tests: 
>   testEnglishProcessingTest(org.apache.uima.annotator.WhitespaceTokenizerPerfTest)
> Tests in error: 
>   testAnnotatorSpecial(org.apache.uima.annotator.WhitespaceTokTest)
>   testAnnotatorEnglish(org.apache.uima.annotator.WhitespaceTokTest)
>   testAnnotatorTabs(org.apache.uima.annotator.WhitespaceTokTest)
> Tests run: 4, Failures: 1, Errors: 3, Skipped: 0
> [INFO] ------------------------------------------------------------------------
> [ERROR] BUILD FAILURE
> [INFO] ------------------------------------------------------------------------
> [INFO] There are test failures.
> == command : 
> - cd sandbox/aggregate-addons
> - mvn install
> == svn info : 
> URL: http://svn.apache.org/repos/asf/uima/sandbox/trunk
> Repository Root: http://svn.apache.org/repos/asf
> Repository UUID: 13f79535-47bb-0310-9956-ffa450edef68
> Revision: 1058796
> Node Kind: directory
> Schedule: normal
> Last Changed Author: tommaso
> Last Changed Rev: 1056535
> Last Changed Date: 2011-01-07 23:15:36 +0100 (Fri, 07 Jan 2011)

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

[jira] Commented: (UIMA-2003) WhitespaceTokenizerPerfTest failure in sandbox Last Changed Rev: 1056535

Posted by "Tommaso Teofili (JIRA)" <de...@uima.apache.org>.
    [ https://issues.apache.org/jira/browse/UIMA-2003?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13003116#comment-13003116 ] 

Tommaso Teofili commented on UIMA-2003:
---------------------------------------

I've gone through these tests on different platforms and can't seem to be able to reproduce the error, Florent could you please post information as requested by Marshall ? Thanks :)

> WhitespaceTokenizerPerfTest failure in sandbox Last Changed Rev: 1056535
> ------------------------------------------------------------------------
>
>                 Key: UIMA-2003
>                 URL: https://issues.apache.org/jira/browse/UIMA-2003
>             Project: UIMA
>          Issue Type: Bug
>          Components: Sandbox
>            Reporter: Florent ANDRE
>
> === error
> -------------------------------------------------------
>  T E S T S
> -------------------------------------------------------
> Running org.apache.uima.annotator.WhitespaceTokenizerPerfTest
> Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 0.046 sec <<< FAILURE!
> Running org.apache.uima.annotator.WhitespaceTokTest
> Tests run: 3, Failures: 0, Errors: 3, Skipped: 0, Time elapsed: 0.181 sec <<< FAILURE!
> Results :
> Failed tests: 
>   testEnglishProcessingTest(org.apache.uima.annotator.WhitespaceTokenizerPerfTest)
> Tests in error: 
>   testAnnotatorSpecial(org.apache.uima.annotator.WhitespaceTokTest)
>   testAnnotatorEnglish(org.apache.uima.annotator.WhitespaceTokTest)
>   testAnnotatorTabs(org.apache.uima.annotator.WhitespaceTokTest)
> Tests run: 4, Failures: 1, Errors: 3, Skipped: 0
> [INFO] ------------------------------------------------------------------------
> [ERROR] BUILD FAILURE
> [INFO] ------------------------------------------------------------------------
> [INFO] There are test failures.
> == command : 
> - cd sandbox/aggregate-addons
> - mvn install
> == svn info : 
> URL: http://svn.apache.org/repos/asf/uima/sandbox/trunk
> Repository Root: http://svn.apache.org/repos/asf
> Repository UUID: 13f79535-47bb-0310-9956-ffa450edef68
> Revision: 1058796
> Node Kind: directory
> Schedule: normal
> Last Changed Author: tommaso
> Last Changed Rev: 1056535
> Last Changed Date: 2011-01-07 23:15:36 +0100 (Fri, 07 Jan 2011)

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

        

[jira] [Reopened] (UIMA-2003) WhitespaceTokenizerPerfTest failure in sandbox Last Changed Rev: 1056535

Posted by "Tommaso Teofili (JIRA)" <de...@uima.apache.org>.
     [ https://issues.apache.org/jira/browse/UIMA-2003?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Tommaso Teofili reopened UIMA-2003:
-----------------------------------


> WhitespaceTokenizerPerfTest failure in sandbox Last Changed Rev: 1056535
> ------------------------------------------------------------------------
>
>                 Key: UIMA-2003
>                 URL: https://issues.apache.org/jira/browse/UIMA-2003
>             Project: UIMA
>          Issue Type: Bug
>          Components: Sandbox
>            Reporter: Florent ANDRE
>
> === error
> -------------------------------------------------------
>  T E S T S
> -------------------------------------------------------
> Running org.apache.uima.annotator.WhitespaceTokenizerPerfTest
> Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 0.046 sec <<< FAILURE!
> Running org.apache.uima.annotator.WhitespaceTokTest
> Tests run: 3, Failures: 0, Errors: 3, Skipped: 0, Time elapsed: 0.181 sec <<< FAILURE!
> Results :
> Failed tests: 
>   testEnglishProcessingTest(org.apache.uima.annotator.WhitespaceTokenizerPerfTest)
> Tests in error: 
>   testAnnotatorSpecial(org.apache.uima.annotator.WhitespaceTokTest)
>   testAnnotatorEnglish(org.apache.uima.annotator.WhitespaceTokTest)
>   testAnnotatorTabs(org.apache.uima.annotator.WhitespaceTokTest)
> Tests run: 4, Failures: 1, Errors: 3, Skipped: 0
> [INFO] ------------------------------------------------------------------------
> [ERROR] BUILD FAILURE
> [INFO] ------------------------------------------------------------------------
> [INFO] There are test failures.
> == command : 
> - cd sandbox/aggregate-addons
> - mvn install
> == svn info : 
> URL: http://svn.apache.org/repos/asf/uima/sandbox/trunk
> Repository Root: http://svn.apache.org/repos/asf
> Repository UUID: 13f79535-47bb-0310-9956-ffa450edef68
> Revision: 1058796
> Node Kind: directory
> Schedule: normal
> Last Changed Author: tommaso
> Last Changed Rev: 1056535
> Last Changed Date: 2011-01-07 23:15:36 +0100 (Fri, 07 Jan 2011)

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