[continuum] BUILD FAILURE: Apache Commons - Commons Math -

2013-05-31 Thread Continuum@vmbuild
Group (shared) Maven 2 Build Definition (Java 1.5) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Continuum-Build-Host: vmbuild X-Continuum-Project-Id: 97 X-Continuum-Project-Name: Commons Math Online report :

[jexl] Test failing with JUnit 4.11

2013-05-31 Thread Emmanuel Bourg
Hi, I observed a test failure using JUnit 4.11 with the JEXL 2.x tests: Tests in error: testCalculations(org.apache.commons.jexl2.ArithmeticTest): org.apache.commons.jexl2.junit.Asserter.assertExpression@95![0,5]: '3 / 0;' divide error This doesn't happen with JUnit 4.10. JEXL 3 doesn't seem

Re: [jexl] Test failing with JUnit 4.11

2013-05-31 Thread Emmanuel Bourg
Le 31/05/2013 16:12, Gary Gregory a écrit : One thing to watch out for is that test method execution order is 'random'. Even the test methods for a given class? Emmanuel Bourg - To unsubscribe, e-mail:

getting access to the components from my svn client

2013-05-31 Thread Adekoya Adekunle
do i need user-id to download the components on the commons repo from my svn client ? if yes, how do i get the user-id and password ? thanks kunle

Re: [jexl] Test failing with JUnit 4.11

2013-05-31 Thread Gary Gregory
Yes, please see https://garygregory.wordpress.com/2013/01/23/understanding-junit-method-order-execution-updated-for-version-4-11/ Gary On Fri, May 31, 2013 at 10:30 AM, Emmanuel Bourg ebo...@apache.org wrote: Le 31/05/2013 16:12, Gary Gregory a écrit : One thing to watch out for is that

[Graph] Missing algorithms

2013-05-31 Thread Oliver Kopp
Dear Bruno, He's willing to contribute to commons-graph too. Do you know if there's any algorithm that would be easier to implement and that no one is working on porting to commons-graph ATM, please? I'm not tracking a list of who is porting which algorithm to commons-graph. I think, that

Re: [jexl] Test failing with JUnit 4.11

2013-05-31 Thread Jörg Schaible
Gary Gregory wrote: Yes, please see https://garygregory.wordpress.com/2013/01/23/understanding-junit-method-order-execution-updated-for-version-4-11/ ... and ... http://maven.apache.org/surefire/maven-surefire-plugin/test-mojo.html#runOrder Personally I use always random order in my tests.

Re: svn commit: r1488301 - /commons/proper/ognl/trunk/doap_ognl.rdf

2013-05-31 Thread Maurizio Cucchiara
Nice catch, looks like project is wrong as well Project rdf:about=http://commons.apache.org/fileupload/; Maurizio Cucchiara - To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org For additional commands, e-mail:

Re: svn commit: r1488301 - /commons/proper/ognl/trunk/doap_ognl.rdf

2013-05-31 Thread sebb
On 31 May 2013 17:38, Maurizio Cucchiara mcucchi...@apache.org wrote: Nice catch, looks like project is wrong as well Project rdf:about=http://commons.apache.org/fileupload/; Rats - thought I'd found all the references; now fixed. Maurizio Cucchiara

Re: [Followup][Graph] the future of commons-graph and modularization

2013-05-31 Thread Bruno P. Kinoshita
Hi Simo! I liked the project structure, it's looking like the new structure that Matt created in commons-functor [1], with a API project, one module for each algorithm family and other modules for utility projects, like benchmark tests. I think we'll have to update the website, since now under

Re: [jexl] Test failing with JUnit 4.11

2013-05-31 Thread sebb
Looks like the problem might be the engine settings; divide by 0 will throw an error in strict mode (lenient=false) So if tests use a mix of modes, it's possible that the wrong mode will be left around. The JEXL engine is not immutable, and is shared between some tests, so this can easily

Re: [chain] improving current registry and configuration APIs

2013-05-31 Thread Benedikt Ritter
Hi again, Simo and I had a chat about chain lately. We agreed on the points he has already mentioned (see below). Some additional issues that we came across: * The xml module has dependencies to digister. This should be removed if possible * Base classes of the API are currently in

Re: [jexl] Test failing with JUnit 4.11

2013-05-31 Thread Emmanuel Bourg
Le 31/05/2013 19:14, sebb a écrit : Looks like the problem might be the engine settings; divide by 0 will throw an error in strict mode (lenient=false) That's the missing piece of the puzzle. testDivideByZero is declared after testCalculations but is executed before with JUnit 4.11.