Re: JNI segfault while running Java tests

2020-08-11 Thread James McCoy
On Sun, Aug 09, 2020 at 11:10:42PM +0200, Daniel Sahlberg wrote: > I have investigated further and I think I have found the issue. A patch is > attached, basically changing  >     const String::Contents key(String(m_env, jkey)); > to  >     const String str(m_env, jkey); >     const String::Content

Re: JNI segfault while running Java tests

2020-08-10 Thread Alexandr Miloslavskiy
On 09.08.2020 23:10, Daniel Sahlberg wrote: I have investigated further and I think I have found the issue. A patch is attached, basically changing     const String::Contents key(String(m_env, jkey)); to     const String str(m_env, jkey);     const String::Contents key(str); in ImmutableMap.

Re: JNI segfault while running Java tests

2020-08-09 Thread Daniel Sahlberg
Den sön 9 aug. 2020 kl 15:28 skrev Daniel Sahlberg < daniel.l.sahlb...@gmail.com>: > Den sön 9 aug. 2020 15:14Nathan Hartman skrev: > >> On Sat, Aug 8, 2020 at 1:23 PM James McCoy wrote: >> >>> On Sat, Aug 08, 2020 at 10:35:14AM -0400, James McCoy wrote: >>> > The Debian builds for 1.14.0 recent

Re: JNI segfault while running Java tests

2020-08-09 Thread Daniel Sahlberg
Den sön 9 aug. 2020 15:14Nathan Hartman skrev: > On Sat, Aug 8, 2020 at 1:23 PM James McCoy wrote: > >> On Sat, Aug 08, 2020 at 10:35:14AM -0400, James McCoy wrote: >> > The Debian builds for 1.14.0 recently started crashing while running the >> > Java tests. This is pretty far out of my expert

Re: JNI segfault while running Java tests

2020-08-09 Thread Nathan Hartman
On Sat, Aug 8, 2020 at 1:23 PM James McCoy wrote: > On Sat, Aug 08, 2020 at 10:35:14AM -0400, James McCoy wrote: > > The Debian builds for 1.14.0 recently started crashing while running the > > Java tests. This is pretty far out of my expertise, so hopefully > > someone can help out. I don't k

Re: JNI segfault while running Java tests

2020-08-08 Thread James McCoy
On Sat, Aug 08, 2020 at 10:35:14AM -0400, James McCoy wrote: > The Debian builds for 1.14.0 recently started crashing while running the > Java tests. This is pretty far out of my expertise, so hopefully > someone can help out. > > I've attached the hs_err file. > > The tests used to pass with Op