Re: [hibernate-dev] Analyzing the ORM testsuite

2018-04-19 Thread Steve Ebersole
I may be wrong, but I believe that the `build` task runs checkstyle, etc. Findbugs especially takes a ton of time. Have you tried just test? I have noticed that it seems like test causes javadoc to run as well, which I had intended to look at. But that seems not relevant to what you see On

Re: [hibernate-dev] Analyzing the ORM testsuite

2018-04-19 Thread Gail Badner
I'm not seeing anything unusual. I usually run `./gradlew clean test`. On Thu, Apr 19, 2018 at 2:20 PM, Sanne Grinovero wrote: > On 19 April 2018 at 21:47, Chris Cranford wrote: > > Sanne - > > > > Are you running the build task or are you executing

Re: [hibernate-dev] Analyzing the ORM testsuite

2018-04-19 Thread Chris Cranford
The entire build process under OpenJDK 8 here: BUILD SUCCESSFUL in 47m 26s 251 actionable tasks: 233 executed, 18 up-to-date The only thing I noticed was that while executing the hibernate-core tests, the memory consumption seemed quite high toward the end of the test suite, particularly ~3.5GB

Re: [hibernate-dev] Analyzing the ORM testsuite

2018-04-19 Thread Sanne Grinovero
On 19 April 2018 at 21:47, Chris Cranford wrote: > Sanne - > > Are you running the build task or are you executing other more specific > tasks and noticing the slowness? Just running "gradle clean build" from the root. I had the same results with OpenJDK 8 and 9, twice.

Re: [hibernate-dev] Analyzing the ORM testsuite

2018-04-19 Thread Sanne Grinovero
On 19 April 2018 at 21:25, Steve Ebersole wrote: > Nothing off the top of my head. The build time is in normal range on my > machine as of this morning (8 - 10 minutes). Great > You mentioned a specific commit. Is that just when you noticed a change, or > do you suspect

Re: [hibernate-dev] Analyzing the ORM testsuite

2018-04-19 Thread Chris Cranford
Sanne - Are you running the build task or are you executing other more specific tasks and noticing the slowness? On 04/19/2018 04:25 PM, Steve Ebersole wrote: > Nothing off the top of my head. The build time is in normal range on my > machine as of this morning (8 - 10 minutes). > > You

Re: [hibernate-dev] Analyzing the ORM testsuite

2018-04-19 Thread Steve Ebersole
Nothing off the top of my head. The build time is in normal range on my machine as of this morning (8 - 10 minutes). You mentioned a specific commit. Is that just when you noticed a change, or do you suspect something in that commit? I'm not at computer right now, but when I get back I will

[hibernate-dev] Analyzing the ORM testsuite

2018-04-19 Thread Sanne Grinovero
Hi all, I'm trying to analyze the memory usage of current master of Hibernate ORM; I started looking because of OOM errors on the PostgreSQL testsuite (as mentioned in another thread). So far I've seen that Mockito is allocating a "lot of stuff"; I might be able to improve some things in that