[gwt-contrib] Re: Can't get 'ant test' to pass it times out

2014-10-08 Thread Jens
Hmm instead of ant I mostly use Eclipse to run tests. To do so I enable the GPE plugin for gwt-user/gwt-dev projects in Eclipse and then run tests as usual. Since GPE picks up the GWT source project as SDK it works quite well for me. -- J. -- You received this message because you are subscri

[gwt-contrib] Re: Can't get 'ant test' to pass it times out

2014-10-15 Thread Scott Morgan
Hi All, Thanks for all of you replies, I will start looking at this again in a few days. Also what build tools are you looking at? Historically I have favored ant over maven because it is more flexible, however I have spent a good chunk of the last week thinking about writing a build system

[gwt-contrib] Re: Can't get 'ant test' to pass it times out

2014-10-16 Thread Thomas Broyer
On Wednesday, October 15, 2014 9:29:45 PM UTC+2, Scott Morgan wrote: > > Hi All, > >Thanks for all of you replies, I will start looking at this again in a > few days. Also what build tools are you looking at? > Historically I have favored ant over maven because it is more flexible, > howev

[gwt-contrib] Re: Can't get 'ant test' to pass it times out

2014-10-16 Thread Scott Morgan
Thanks for the build tools comments, I have a few questions. Do any of these have source control (git/tag) support for building specific versions (ie git clone, checkout)? Do any of these use massive concurrency for the compiling/testing runs? The legacy adligo.org build (in ant) did things this

[gwt-contrib] Re: Can't get 'ant test' to pass it times out

2014-10-16 Thread Scott Morgan
Hi, Some other issues; read https://gwt-review.googlesource.com/#/c/9552/8/README.md this worked $ ant clean elemental dist It might be nice to have the following on the ci server... ${uname -r} 3.10.0-123.8.1.el7.x86_64 ${python -V} Python 2.7.5 ${gcc -v} ... gcc version 4.8.2 20140120 (Red Hat

[gwt-contrib] Re: Can't get 'ant test' to pass it times out

2014-10-16 Thread Scott Morgan
Ok dev ant test is working :) solved by the obvious $ which ant modify $PATH to the $ANT_HOME/bin/ant script ANT_OPTS="-Xmx4g -XX:MaxPermSize=4g" quotes are important :) -- You received this message because you are subscribed to the Google Groups "GWT Contributors" group. To unsubscribe from

[gwt-contrib] Re: Can't get 'ant test' to pass it times out

2014-10-16 Thread Scott Morgan
hmm I added the three classes LinkageError, IncompatibleClassChangeError and NoSuchFieldError, and got a large number of test failures ie; [junit] Running com.google.web.bindery.requestfactory.gwt.RequestFactorySuite [junit] Tests run: 182, Failures: 0, Errors: 182, Time elapsed: 5.257

[gwt-contrib] Re: Can't get 'ant test' to pass it times out

2014-10-16 Thread Scott Morgan
Hmm, still failures on the pristine copy getting new copies trying to modify the directory before the first build? -- You received this message because you are subscribed to the Google Groups "GWT Contributors" group. To unsubscribe from this group and stop receiving emails from it, send an em

[gwt-contrib] Re: Can't get 'ant test' to pass it times out

2014-10-16 Thread Scott Morgan
Since my change causes so many test failures, it would be nice if I could run the full build failing fast on the first test failure. Is this possible? This would help me determine the root cause of the other test failures. Cheers, Scott -- You received this message because you are subscribed

[gwt-contrib] Re: Can't get 'ant test' to pass it times out

2014-10-17 Thread Scott Morgan
Most of the errors appear to be caused by UnableToCompleteException; Exception in constructor: testGetMethods (com.google.gwt.core.ext.UnableToCompleteException: (see previous log entries) at com.google.gwt.dev.cfg.ModuleDef.checkForSeedTypes(ModuleDef.java:1031) at com.google.

[gwt-contrib] Re: Can't get 'ant test' to pass it times out

2014-10-17 Thread Scott Morgan
Added the three classes to /user/src/com/google/gwt/user/server/rpc/impl/LegacySerializationPolicy.java trying another full run... -- You received this message because you are subscribed to the Google Groups "GWT Contributors" group. To unsubscribe from this group and stop receiving emails fr

[gwt-contrib] Re: Can't get 'ant test' to pass it times out

2014-10-17 Thread Rene Hangstrup Møller
At GWT.create Ray Cromwell mentioned he had created some rough gradle files that enabled him to generate an IntelliJ project. I seem to recall I tried it out shortly after the conference. Now I can't find them. It also sound like Thomas Broyer has attempted something. I might be tempted to give

[gwt-contrib] Re: Can't get 'ant test' to pass it times out

2014-10-17 Thread Thomas Broyer
On Friday, October 17, 2014 5:25:20 PM UTC+2, Rene Hangstrup Møller wrote: > > At GWT.create Ray Cromwell mentioned he had created some rough gradle > files that enabled him to generate an IntelliJ project. > > I seem to recall I tried it out shortly after the conference. Now I can't > find the

[gwt-contrib] Re: Can't get 'ant test' to pass it times out

2014-10-17 Thread Scott Morgan
Thanks for the comments on various build systems. I have been scanning all of their docs. The strange thing I am noticing is that while they all allow concurrency, it generally seems to be a after thought for multiple projects. The buck facebook comment says 2x faster, however I am thinking

[gwt-contrib] Re: Can't get 'ant test' to pass it times out

2016-05-04 Thread Vit Hampl
Hi, I've created the environment as described in http://www.gwtproject.org/makinggwtbetter.html, build works fine, but when I try to run tests using ant user -Dtarget=test, I end up with numerous "[ERROR] Hint: Check that your module inherits 'com.google.gwt.core.Core' either directly or indir

Re: [gwt-contrib] Re: Can't get 'ant test' to pass it times out

2014-10-08 Thread Manuel Carrasco Moñino
Just for your information, I was writing a document explaining how to run tests from command line, I have taken advantage of this thread to commit a first version to gerrit, feel free to play with the examples and make suggestions. https://gwt-review.googlesource.com/#/c/9552/ On Wed, Oct 8, 2014

Re: [gwt-contrib] Re: Can't get 'ant test' to pass it times out

2014-10-17 Thread Manuel Carrasco Moñino
What is exactly the part of GWT you want to contribute with? What are the tests you have to run for that specific part? What are your OS and tools (java, ant, python, g++) versions? I discourage you to try to run all the gwt test suite in your environment, I would focus on those tests relevant for

Re: [gwt-contrib] Re: Can't get 'ant test' to pass it times out

2014-10-17 Thread Scott Morgan
Nevermind, it started passing, YEA! I am not sure what changed, it could be the updated code (tools/trunk) that someone checked in this morning that I pulled in. -- You received this message because you are subscribed to the Google Groups "GWT Contributors" group. To unsubscribe from this gr

Re: [gwt-contrib] Re: Can't get 'ant test' to pass it times out

2014-10-17 Thread Scott Morgan
What are your OS and tools (java, ant, python, g++) versions? Here are my versions, and a script to get them. Is there a good place to check this script in, perhaps under tools? Also it would be nice if we could echo the ANT_OPTS in the ant script, since I set it to this in ${ANT_HOME}/bin/an