Re: Error, Java 8, lambda form compilation

2018-03-01 Thread Vladimir Ivanov
On 2/28/18 11:52 PM, Charles Oliver Nutter wrote: Ah-ha...I added some logging, which of course made the error go away...but about ten tests later I got a metaspace OOM. That makes sense. BTW there's another source of exceptions during MethodHandle construction (e.g., JDK-8086252 [1]):

Re: Error, Java 8, lambda form compilation

2018-02-28 Thread Charles Oliver Nutter
Ah-ha...I added some logging, which of course made the error go away...but about ten tests later I got a metaspace OOM. Could be this was all just a memory issue, but it would be nice if the error didn't get swallowed. - Charlie On Wed, Feb 28, 2018 at 12:40 PM Charles Oliver Nutter

Re: Error, Java 8, lambda form compilation

2018-02-28 Thread Charles Oliver Nutter
Hey, I'm still not sure how best to deal with this, but we've been consistently getting a similar error at the same place. It has kept JRuby master CI red for many weeks. The problem does not reproduce when running in isolation...only in a long test run, and so far only on Travis CI (Ubuntu

Re: Error, Java 8, lambda form compilation

2018-01-12 Thread Charles Oliver Nutter
I wish I could provide more info here. Just got another one in CI: [exec] [1603/8763] TestBenchmark#test_benchmark_makes_extra_calcultations_with_an_Array_at_the_end_of_the_benchmark_and_show_the_resultUnhandled Java exception: java.lang.BootstrapMethodError: call site initialization

Re: Error, Java 8, lambda form compilation

2018-01-09 Thread Vladimir Ivanov
Thanks, Charlie. Unfortunately, it doesn't give much info without the exception which caused it. jdk/src/share/classes/java/lang/invoke/LambdaForm.java: 659 } catch (Error | Exception ex) { 660 throw newInternalError(this.toString(), ex); 661 } Best