From owner-freebsd-java@freebsd.org Wed Mar 15 14:57:43 2017 Return-Path: Delivered-To: freebsd-java@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B194FD0EBE2 for ; Wed, 15 Mar 2017 14:57:43 +0000 (UTC) (envelope-from michael.osipov@siemens.com) Received: from thoth.sbs.de (thoth.sbs.de [192.35.17.2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "thoth.sbs.de", Issuer "Siemens Issuing CA Class Internet Server 2013" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 41A821D28 for ; Wed, 15 Mar 2017 14:57:42 +0000 (UTC) (envelope-from michael.osipov@siemens.com) Received: from mail1.sbs.de (mail1.sbs.de [192.129.41.35]) by thoth.sbs.de (8.15.2/8.15.2) with ESMTPS id v2FEq4xO013376 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK) for ; Wed, 15 Mar 2017 15:52:04 +0100 Received: from DEFTHW99ERLMSX.ww902.siemens.net (defthw99erlmsx.ww902.siemens.net [139.22.70.136]) by mail1.sbs.de (8.15.2/8.15.2) with ESMTPS id v2FEq2xq026776 (version=TLSv1 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 15 Mar 2017 15:52:04 +0100 Received: from DENBGAT9ERMMSX.ww902.siemens.net (139.22.70.140) by DEFTHW99ERLMSX.ww902.siemens.net (139.22.70.136) with Microsoft SMTP Server (TLS) id 14.3.339.0; Wed, 15 Mar 2017 15:50:47 +0100 Received: from DEFTHW99EJ5MSX.ww902.siemens.net ([169.254.6.192]) by DENBGAT9ERMMSX.ww902.siemens.net ([139.22.70.140]) with mapi id 14.03.0339.000; Wed, 15 Mar 2017 15:50:46 +0100 From: "Osipov, Michael" To: "freebsd-java@freebsd.org" Subject: Needle in the haystack: same Java code on two identical machines, one passes one fails Thread-Topic: Needle in the haystack: same Java code on two identical machines, one passes one fails Thread-Index: AdKdm2q0eGsP3SuqQcO0wrNX1weRrA== Date: Wed, 15 Mar 2017 14:50:46 +0000 Message-ID: <68644224DA0DE64CA5A49838ED219A0425C0F0EA@DEFTHW99EJ5MSX.ww902.siemens.net> Accept-Language: de-DE, en-US Content-Language: de-DE X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [139.22.70.21] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2017 14:57:43 -0000 Hi folks, I am currently experiencing a stdio issue on a FreeBSD 10.3-STABLE box at w= ork where another, identical box, works flawlessly as well as other test boxes in a V= M or on real hardware from 9.3-STABLE to 11.0-STABLE. Let's stick to the two identical boxes at work for now, both are two identi= cal HPE servers (Xeon CPUs, RAM 4 GiB) running 10.3-STABLE, both base systems are configured the same way. Software from ports installed is slightly differen= t. faulty box: FreeBSD blnn719x.ww004.siemens.net 10.3-STABLE FreeBSD 10.3-STABLE #0 r3108= 05: Fri Dec 30 11:29:53 CET 2016 root@blnn719x.ww004.siemens.net:/usr/o= bj/usr/src/sys/BLNN719X i386 working box: FreeBSD blnn714x.ww004.siemens.net 10.3-STABLE FreeBSD 10.3-STABLE #0 r3106= 32: Tue Dec 27 18:58:32 CET 2016 root@blnn714x.ww004.siemens.net:/usr/o= bj/usr/src/sys/BLNN714X i386 The code I run is publically available, Maven Surefire (branch 2.19.2-exper= imental contains extended log output) which is the testing framework used throughou= t the entire Maven ecosystem: https://git-wip-us.apache.org/repos/asf/maven-surefire.git Run with: mvn -B -V clean install -Drat.skip -Dcheckstyle.skip | tee ~/maven-surefire= .log Both machines have Maven 3.5.0-alpha-1 and OpenJDK 8 Update 121 from ports. Tests run off local disks on a gvinum backend which runs on top of an HP RA= ID5 system. A few specific tests fail namely where a parent Java process forks another = Java process (not thread) and communicates bidrectionally through stdio. The fai= lures manifest in the parent process assuming the forked process to be gone altho= ugh the forked process already notified via stdio that it has completed all tas= ks and is performing a clean exit. This does not happen on blnn714x, really we= ird! I don't expect anyone to solve my problem here, but merely provide pointers where I can start looking what is really wrong with the machine blnn719x co= mpared to the other one because I am searching the needle in the haystack. I am also quite certain that this is not a bug in the client code because i= t should fail on both machines as well as on the VMs I have at home and especially my old Pentium 4 box running FreeBSD 11-STABLE with even less me= mory if it would be a client code issue. I am convinced that this is some shared memory, buffers, caches issue. I have uploaded two tarballs for both machines: http://home.apache.org/~michaelo/maven/surefire/maven-surefire-2.19.2-exper= imental-blnn714x.tar.gz http://home.apache.org/~michaelo/maven/surefire/maven-surefire-2.19.2-exper= imental-blnn719x.tar.gz Each tarball contains: * log output of Maven with the failed tests, see the very end, e.g., Tests in error:=20 testForkCountTwoNoReuse(org.apache.maven.surefire.its.ForkModeIT): Exit c= ode was non-zero: 1; command line and log =3D (..) * surefire-integration-tests/target//log.txt Contains verbose traces of the communication between parent and children I'd appreciate any type of help! Best regards, Michael PS: I have tested the code also on Windows, Ubuntu, RHEL6, Fedora 25 succes= sfully From owner-freebsd-java@freebsd.org Wed Mar 15 15:52:20 2017 Return-Path: Delivered-To: freebsd-java@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B9817D0D346 for ; Wed, 15 Mar 2017 15:52:20 +0000 (UTC) (envelope-from rb@gid.co.uk) Received: from mx0.gid.co.uk (mx0.gid.co.uk [194.32.164.250]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 546C01386 for ; Wed, 15 Mar 2017 15:52:19 +0000 (UTC) (envelope-from rb@gid.co.uk) Received: from [194.32.164.15] ([194.32.164.15]) by mx0.gid.co.uk (8.14.2/8.14.2) with ESMTP id v2FFqBqn062724; Wed, 15 Mar 2017 15:52:11 GMT (envelope-from rb@gid.co.uk) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 9.3 \(3124\)) Subject: Re: Needle in the haystack: same Java code on two identical machines, one passes one fails From: Bob Bishop In-Reply-To: <68644224DA0DE64CA5A49838ED219A0425C0F0EA@DEFTHW99EJ5MSX.ww902.siemens.net> Date: Wed, 15 Mar 2017 15:52:12 +0000 Cc: "freebsd-java@freebsd.org" Content-Transfer-Encoding: quoted-printable Message-Id: References: <68644224DA0DE64CA5A49838ED219A0425C0F0EA@DEFTHW99EJ5MSX.ww902.siemens.net> To: "Osipov, Michael" X-Mailer: Apple Mail (2.3124) X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2017 15:52:20 -0000 Hi, > On 15 Mar 2017, at 14:50, Osipov, Michael = wrote: >=20 > Hi folks, >=20 > I am currently experiencing a stdio issue on a FreeBSD 10.3-STABLE box = at work where > another, identical box, works flawlessly as well as other test boxes = in a VM or on real > hardware from 9.3-STABLE to 11.0-STABLE. >=20 > Let's stick to the two identical boxes at work for now, both are two = identical HPE > servers (Xeon CPUs, RAM 4 GiB) running 10.3-STABLE, both base systems = are > configured the same way. Software from ports installed is slightly = different. >=20 > faulty box: > FreeBSD blnn719x.ww004.siemens.net 10.3-STABLE FreeBSD 10.3-STABLE #0 = r310805: Fri Dec 30 11:29:53 CET 2016 = root@blnn719x.ww004.siemens.net:/usr/obj/usr/src/sys/BLNN719X i386 >=20 > working box: > FreeBSD blnn714x.ww004.siemens.net 10.3-STABLE FreeBSD 10.3-STABLE #0 = r310632: Tue Dec 27 18:58:32 CET 2016 = root@blnn714x.ww004.siemens.net:/usr/obj/usr/src/sys/BLNN714X i386 = [etc] Well at a quick look, there are changes between r310632 and r310805 that = might explain what you are seeing. -- Bob Bishop rb@gid.co.uk From owner-freebsd-java@freebsd.org Wed Mar 15 16:00:00 2017 Return-Path: Delivered-To: freebsd-java@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C9A70D0D545 for ; Wed, 15 Mar 2017 16:00:00 +0000 (UTC) (envelope-from michael.osipov@siemens.com) Received: from lizzard.sbs.de (lizzard.sbs.de [194.138.37.39]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "lizzard.sbs.de", Issuer "Siemens Issuing CA Class Internet Server 2013" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5B2611736 for ; Wed, 15 Mar 2017 15:59:59 +0000 (UTC) (envelope-from michael.osipov@siemens.com) Received: from mail2.sbs.de (mail2.sbs.de [192.129.41.66]) by lizzard.sbs.de (8.15.2/8.15.2) with ESMTPS id v2FFxuv6002569 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK); Wed, 15 Mar 2017 16:59:56 +0100 Received: from DEFTHW99ERNMSX.ww902.siemens.net (defthw99ernmsx.ww902.siemens.net [139.22.70.141]) by mail2.sbs.de (8.15.2/8.15.2) with ESMTPS id v2FFxub2010995 (version=TLSv1 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Wed, 15 Mar 2017 16:59:56 +0100 Received: from DEFTHW99EJ5MSX.ww902.siemens.net ([169.254.6.192]) by DEFTHW99ERNMSX.ww902.siemens.net ([139.22.70.141]) with mapi id 14.03.0339.000; Wed, 15 Mar 2017 16:59:56 +0100 From: "Osipov, Michael" To: Bob Bishop CC: "freebsd-java@freebsd.org" Subject: RE: Needle in the haystack: same Java code on two identical machines, one passes one fails Thread-Topic: Needle in the haystack: same Java code on two identical machines, one passes one fails Thread-Index: AdKdm2q0eGsP3SuqQcO0wrNX1weRrAAAE+wAAAJPGCA= Date: Wed, 15 Mar 2017 15:59:56 +0000 Message-ID: <68644224DA0DE64CA5A49838ED219A0425C0F181@DEFTHW99EJ5MSX.ww902.siemens.net> References: <68644224DA0DE64CA5A49838ED219A0425C0F0EA@DEFTHW99EJ5MSX.ww902.siemens.net> In-Reply-To: Accept-Language: de-DE, en-US Content-Language: de-DE X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [139.22.70.21] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2017 16:00:00 -0000 > Hi, >=20 >=20 > > On 15 Mar 2017, at 14:50, Osipov, Michael > wrote: > > > > Hi folks, > > > > I am currently experiencing a stdio issue on a FreeBSD 10.3-STABLE box > at work where > > another, identical box, works flawlessly as well as other test boxes in > a VM or on real > > hardware from 9.3-STABLE to 11.0-STABLE. > > > > Let's stick to the two identical boxes at work for now, both are two > identical HPE > > servers (Xeon CPUs, RAM 4 GiB) running 10.3-STABLE, both base systems > are > > configured the same way. Software from ports installed is slightly > different. > > > > faulty box: > > FreeBSD blnn719x.ww004.siemens.net 10.3-STABLE FreeBSD 10.3-STABLE #0 > r310805: Fri Dec 30 11:29:53 CET 2016 > root@blnn719x.ww004.siemens.net:/usr/obj/usr/src/sys/BLNN719X i386 > > > > working box: > > FreeBSD blnn714x.ww004.siemens.net 10.3-STABLE FreeBSD 10.3-STABLE #0 > r310632: Tue Dec 27 18:58:32 CET 2016 > root@blnn714x.ww004.siemens.net:/usr/obj/usr/src/sys/BLNN714X i386 [etc] >=20 > Well at a quick look, there are changes between r310632 and r310805 that > might explain what you are seeing. Are you certain? I checked both logs and the diff between these two revisio= ns. All I see is HyperV changes from Microsoft and a few changes to Intel NICs. Is there anything particular you are pointing at? Michael From owner-freebsd-java@freebsd.org Wed Mar 15 17:08:12 2017 Return-Path: Delivered-To: freebsd-java@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2220DD0E3EA for ; Wed, 15 Mar 2017 17:08:12 +0000 (UTC) (envelope-from rb@gid.co.uk) Received: from mx0.gid.co.uk (mx0.gid.co.uk [194.32.164.250]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BD5D6B5B for ; Wed, 15 Mar 2017 17:08:11 +0000 (UTC) (envelope-from rb@gid.co.uk) Received: from [194.32.164.15] ([194.32.164.15]) by mx0.gid.co.uk (8.14.2/8.14.2) with ESMTP id v2FH89aT073328; Wed, 15 Mar 2017 17:08:09 GMT (envelope-from rb@gid.co.uk) Content-Type: text/plain; charset=utf-8 Mime-Version: 1.0 (Mac OS X Mail 9.3 \(3124\)) Subject: Re: Needle in the haystack: same Java code on two identical machines, one passes one fails From: rb@gid.co.uk In-Reply-To: <68644224DA0DE64CA5A49838ED219A0425C0F181@DEFTHW99EJ5MSX.ww902.siemens.net> Date: Wed, 15 Mar 2017 17:08:09 +0000 Cc: "freebsd-java@freebsd.org" Content-Transfer-Encoding: quoted-printable Message-Id: References: <68644224DA0DE64CA5A49838ED219A0425C0F0EA@DEFTHW99EJ5MSX.ww902.siemens.net> <68644224DA0DE64CA5A49838ED219A0425C0F181@DEFTHW99EJ5MSX.ww902.siemens.net> To: "Osipov, Michael" X-Mailer: Apple Mail (2.3124) X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2017 17:08:12 -0000 > On 15 Mar 2017, at 15:59, Osipov, Michael = wrote: >=20 >> Hi, >>=20 >>=20 >>> On 15 Mar 2017, at 14:50, Osipov, Michael = >> wrote: >>>=20 >>> Hi folks, >>>=20 >>> I am currently experiencing a stdio issue on a FreeBSD 10.3-STABLE = box >> at work where >>> another, identical box, works flawlessly as well as other test boxes = in >> a VM or on real >>> hardware from 9.3-STABLE to 11.0-STABLE. >>>=20 >>> Let's stick to the two identical boxes at work for now, both are two >> identical HPE >>> servers (Xeon CPUs, RAM 4 GiB) running 10.3-STABLE, both base = systems >> are >>> configured the same way. Software from ports installed is slightly >> different. >>>=20 >>> faulty box: >>> FreeBSD blnn719x.ww004.siemens.net 10.3-STABLE FreeBSD 10.3-STABLE = #0 >> r310805: Fri Dec 30 11:29:53 CET 2016 >> root@blnn719x.ww004.siemens.net:/usr/obj/usr/src/sys/BLNN719X i386 >>>=20 >>> working box: >>> FreeBSD blnn714x.ww004.siemens.net 10.3-STABLE FreeBSD 10.3-STABLE = #0 >> r310632: Tue Dec 27 18:58:32 CET 2016 >> root@blnn714x.ww004.siemens.net:/usr/obj/usr/src/sys/BLNN714X i386 = [etc] >>=20 >> Well at a quick look, there are changes between r310632 and r310805 = that >> might explain what you are seeing. >=20 > Are you certain? I checked both logs and the diff between these two = revisions. > All I see is HyperV changes from Microsoft and a few changes to Intel = NICs. >=20 > Is there anything particular you are pointing at? No, but that=E2=80=99s the only obvious difference between your two = setups so you should at least eliminate that from your enquiries. > Michael >=20 -- Bob Bishop rb@gid.co.uk From owner-freebsd-java@freebsd.org Thu Mar 16 09:57:06 2017 Return-Path: Delivered-To: freebsd-java@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D0B3DD0DA88 for ; Thu, 16 Mar 2017 09:57:06 +0000 (UTC) (envelope-from michael.osipov@siemens.com) Received: from thoth.sbs.de (thoth.sbs.de [192.35.17.2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "thoth.sbs.de", Issuer "Siemens Issuing CA Class Internet Server 2013" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4B9231C6B for ; Thu, 16 Mar 2017 09:57:05 +0000 (UTC) (envelope-from michael.osipov@siemens.com) Received: from mail1.sbs.de (mail1.sbs.de [192.129.41.35]) by thoth.sbs.de (8.15.2/8.15.2) with ESMTPS id v2G9v2kq021000 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK); Thu, 16 Mar 2017 10:57:03 +0100 Received: from DEFTHW99ERGMSX.ww902.siemens.net (defthw99ergmsx.ww902.siemens.net [139.22.70.132]) by mail1.sbs.de (8.15.2/8.15.2) with ESMTPS id v2G9ux31022997 (version=TLSv1 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Thu, 16 Mar 2017 10:57:02 +0100 Received: from DENBGAT9ERNMSX.ww902.siemens.net (139.22.70.144) by DEFTHW99ERGMSX.ww902.siemens.net (139.22.70.132) with Microsoft SMTP Server (TLS) id 14.3.339.0; Thu, 16 Mar 2017 10:57:00 +0100 Received: from DEFTHW99EJ5MSX.ww902.siemens.net ([169.254.6.192]) by DENBGAT9ERNMSX.ww902.siemens.net ([139.22.70.144]) with mapi id 14.03.0339.000; Thu, 16 Mar 2017 10:56:59 +0100 From: "Osipov, Michael" To: Bob Bishop CC: "freebsd-java@freebsd.org" Subject: RE: Needle in the haystack: same Java code on two identical machines, one passes one fails Thread-Topic: Needle in the haystack: same Java code on two identical machines, one passes one fails Thread-Index: AdKdm2q0eGsP3SuqQcO0wrNX1weRrAAAE+wAACadAyA= Date: Thu, 16 Mar 2017 09:56:59 +0000 Message-ID: <68644224DA0DE64CA5A49838ED219A0425C0F406@DEFTHW99EJ5MSX.ww902.siemens.net> References: <68644224DA0DE64CA5A49838ED219A0425C0F0EA@DEFTHW99EJ5MSX.ww902.siemens.net> In-Reply-To: Accept-Language: de-DE, en-US Content-Language: de-DE X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [139.22.70.21] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2017 09:57:06 -0000 > Hi, >=20 >=20 > > On 15 Mar 2017, at 14:50, Osipov, Michael > wrote: > > > > Hi folks, > > > > I am currently experiencing a stdio issue on a FreeBSD 10.3-STABLE box > at work where > > another, identical box, works flawlessly as well as other test boxes in > a VM or on real > > hardware from 9.3-STABLE to 11.0-STABLE. > > > > Let's stick to the two identical boxes at work for now, both are two > identical HPE > > servers (Xeon CPUs, RAM 4 GiB) running 10.3-STABLE, both base systems > are > > configured the same way. Software from ports installed is slightly > different. > > > > faulty box: > > FreeBSD blnn719x.ww004.siemens.net 10.3-STABLE FreeBSD 10.3-STABLE #0 > r310805: Fri Dec 30 11:29:53 CET 2016 > root@blnn719x.ww004.siemens.net:/usr/obj/usr/src/sys/BLNN719X i386 > > > > working box: > > FreeBSD blnn714x.ww004.siemens.net 10.3-STABLE FreeBSD 10.3-STABLE #0 > r310632: Tue Dec 27 18:58:32 CET 2016 > root@blnn714x.ww004.siemens.net:/usr/obj/usr/src/sys/BLNN714X i386 [etc] >=20 > Well at a quick look, there are changes between r310632 and r310805 that > might explain what you are seeing. Updated both machines: FreeBSD blnn719x.ww004.siemens.net 10.3-STABLE FreeBSD 10.3-STABLE #2 r3153= 12: Wed Mar 15 19:59:58 CET 2017 root@blnn719x.ww004.siemens.net:/usr/o= bj/usr/src/sys/BLNN719X i386 FreeBSD blnn714x.ww004.siemens.net 10.3-STABLE FreeBSD 10.3-STABLE #2 r3153= 12: Wed Mar 15 19:55:39 CET 2017 root@blnn714x.ww004.siemens.net:/usr/o= bj/usr/src/sys/BLNN714X i386 No avail. It was worth a try, at least. From owner-freebsd-java@freebsd.org Thu Mar 16 11:39:10 2017 Return-Path: Delivered-To: freebsd-java@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 261BCD0D52A for ; Thu, 16 Mar 2017 11:39:10 +0000 (UTC) (envelope-from rb@gid.co.uk) Received: from mx0.gid.co.uk (mx0.gid.co.uk [194.32.164.250]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C299A1F51 for ; Thu, 16 Mar 2017 11:39:09 +0000 (UTC) (envelope-from rb@gid.co.uk) Received: from [194.32.164.15] ([194.32.164.15]) by mx0.gid.co.uk (8.14.2/8.14.2) with ESMTP id v2GBd7Fu020264; Thu, 16 Mar 2017 11:39:07 GMT (envelope-from rb@gid.co.uk) Content-Type: text/plain; charset=utf-8 Mime-Version: 1.0 (Mac OS X Mail 9.3 \(3124\)) Subject: Re: Needle in the haystack: same Java code on two identical machines, one passes one fails From: rb@gid.co.uk In-Reply-To: <68644224DA0DE64CA5A49838ED219A0425C0F406@DEFTHW99EJ5MSX.ww902.siemens.net> Date: Thu, 16 Mar 2017 11:39:08 +0000 Cc: "freebsd-java@freebsd.org" Content-Transfer-Encoding: quoted-printable Message-Id: <222B5FF3-F901-4D6C-9A67-DC7C72E60FC4@gid.co.uk> References: <68644224DA0DE64CA5A49838ED219A0425C0F0EA@DEFTHW99EJ5MSX.ww902.siemens.net> <68644224DA0DE64CA5A49838ED219A0425C0F406@DEFTHW99EJ5MSX.ww902.siemens.net> To: "Osipov, Michael" X-Mailer: Apple Mail (2.3124) X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2017 11:39:10 -0000 Hi, > On 16 Mar 2017, at 09:56, Osipov, Michael = wrote: > [=E2=80=A6] >=20 > Updated both machines: > FreeBSD blnn719x.ww004.siemens.net 10.3-STABLE FreeBSD 10.3-STABLE #2 = r315312: Wed Mar 15 19:59:58 CET 2017 = root@blnn719x.ww004.siemens.net:/usr/obj/usr/src/sys/BLNN719X i386 >=20 > FreeBSD blnn714x.ww004.siemens.net 10.3-STABLE FreeBSD 10.3-STABLE #2 = r315312: Wed Mar 15 19:55:39 CET 2017 = root@blnn714x.ww004.siemens.net:/usr/obj/usr/src/sys/BLNN714X i386 >=20 > No avail. It was worth a try, at least. >=20 Indeed. Given the symptoms, next thing I would do would be to check = exactly what versions of shared libraries the java binaries on both = sides are loading and chase down any differences. If that doesn=E2=80=99t help, check that the CLASSPATHs are identical, = check the versions of everything loaded from standard extensions or the = CLASSPATH, and chase down any differences. -- Bob Bishop rb@gid.co.uk From owner-freebsd-java@freebsd.org Thu Mar 16 16:13:19 2017 Return-Path: Delivered-To: freebsd-java@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7BE1FD0F5C0 for ; Thu, 16 Mar 2017 16:13:19 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 65EB819E0 for ; Thu, 16 Mar 2017 16:13:19 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 654CBD0F5BF; Thu, 16 Mar 2017 16:13:19 +0000 (UTC) Delivered-To: java@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 64FEFD0F5BC for ; Thu, 16 Mar 2017 16:13:19 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5515419DF for ; Thu, 16 Mar 2017 16:13:19 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v2GGDJsx087770 for ; Thu, 16 Mar 2017 16:13:19 GMT (envelope-from bugzilla-noreply@freebsd.org) Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="UTF-8" From: bugzilla-noreply@freebsd.org To: java@FreeBSD.org Subject: maintainer-feedback requested: [Bug 217846] Port: java/openjdk8 fails at the configure stage Date: Thu, 16 Mar 2017 16:13:18 +0000 X-Bugzilla-Type: request X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: java@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? Message-ID: In-Reply-To: References: X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2017 16:13:19 -0000 Robert Cina has reassigned Bugzilla Automation 's request for maintainer-feedback to java@FreeBSD.or= g: Bug 217846: Port: java/openjdk8 fails at the configure stage https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D217846 --- Description --- The openjdk8 port fails to build on my system. Also fails to build with similar error using synth. The synth log is attached.=20 System details: FreeBSD alto.localdomain 11.0-STABLE FreeBSD 11.0-STABLE #0 r315336: Wed Ma= r 15 20:06:21 EDT 2017 root@alto.localdomain:/usr/obj/usr/src/sys/GENERIC a= md64 Make details: make install clean =3D=3D=3D> openjdk8-8.121.13 depends on executable: zip - found =3D=3D=3D> openjdk8-8.121.13 depends on file: /usr/local/include/cups/cup= s.h - found =3D=3D=3D> openjdk8-8.121.13 depends on executable: bash - found =3D=3D=3D> openjdk8-8.121.13 depends on executable: gmake - found =3D=3D=3D> openjdk8-8.121.13 depends on package: libiconv>=3D1.14_9 - fou= nd =3D=3D=3D> openjdk8-8.121.13 depends on package: pkgconf>=3D1.3.0_1 - fou= nd =3D=3D=3D> openjdk8-8.121.13 depends on file: /usr/local/bin/autoconf-2.6= 9 - found =3D=3D=3D> openjdk8-8.121.13 depends on shared library: libasound.so - fo= und (/usr/local/lib/libasound.so) =3D=3D=3D> openjdk8-8.121.13 depends on shared library: libfreetype.so - = found (/usr/local/lib/libfreetype.so) =3D=3D=3D> openjdk8-8.121.13 depends on shared library: libfontconfig.so = - found (/usr/local/lib/libfontconfig.so) =3D=3D=3D> openjdk8-8.121.13 depends on shared library: libgif.so - found (/usr/local/lib/libgif.so) =3D=3D=3D> openjdk8-8.121.13 depends on shared library: libX11.so.6 - fou= nd (/usr/local/lib/libX11.so.6) =3D=3D=3D> openjdk8-8.121.13 depends on shared library: libXext.so.6 - fo= und (/usr/local/lib/libXext.so.6) =3D=3D=3D> openjdk8-8.121.13 depends on shared library: libXi.so.6 - found (/usr/local/lib/libXi.so.6) =3D=3D=3D> openjdk8-8.121.13 depends on shared library: libXrender.so.1 -= found (/usr/local/lib/libXrender.so.1) =3D=3D=3D> openjdk8-8.121.13 depends on shared library: libXt.so.6 - found (/usr/local/lib/libXt.so.6) =3D=3D=3D> openjdk8-8.121.13 depends on shared library: libXtst.so.6 - fo= und (/usr/local/lib/libXtst.so.6) =3D=3D=3D> Configuring for openjdk8-8.121.13 Warning: You are using legacy autoconf cross-compilation flags. It is recommended that you use --openjdk-target instead. Running generated-configure.sh ./../../common/autoconf/generated-configure.sh: redirection error: cannot duplicate fd: Bad file descriptor ./../../common/autoconf/generated-configure.sh: line 561: 1: Bad file descriptor configure exiting with result code 1 =3D=3D=3D> Script "../../configure" failed unexpectedly. Please report the problem to java@FreeBSD.org [maintainer] and attach the "/usr/ports/java/openjdk8/work/openjdk/common/autoconf/config.log" including the output of the failure of your make command. Also, it might be a good id= ea to provide an overview of all packages installed on your system (e.g. a /usr/local/sbin/pkg-static info -g -Ea). *** Error code 1 Stop. make[1]: stopped in /usr/ports/java/openjdk8 *** Error code 1 Stop. make: stopped in /usr/ports/java/openjdk8 From owner-freebsd-java@freebsd.org Thu Mar 16 16:13:19 2017 Return-Path: Delivered-To: freebsd-java@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A76D3D0F5C5 for ; Thu, 16 Mar 2017 16:13:19 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 9124919E2 for ; Thu, 16 Mar 2017 16:13:19 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 90914D0F5C2; Thu, 16 Mar 2017 16:13:19 +0000 (UTC) Delivered-To: java@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9046AD0F5C1 for ; Thu, 16 Mar 2017 16:13:19 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8004019E1 for ; Thu, 16 Mar 2017 16:13:19 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v2GGDJt1087770 for ; Thu, 16 Mar 2017 16:13:19 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: java@FreeBSD.org Subject: [Bug 217846] Port: java/openjdk8 fails at the configure stage Date: Thu, 16 Mar 2017 16:13:18 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: transitive@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: java@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter flagtypes.name Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2017 16:13:19 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D217846 Bug ID: 217846 Summary: Port: java/openjdk8 fails at the configure stage Product: Ports & Packages Version: Latest Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: Individual Port(s) Assignee: java@FreeBSD.org Reporter: transitive@gmail.com Flags: maintainer-feedback?(java@FreeBSD.org) Assignee: java@FreeBSD.org The openjdk8 port fails to build on my system. Also fails to build with similar error using synth. The synth log is attached.=20 System details: FreeBSD alto.localdomain 11.0-STABLE FreeBSD 11.0-STABLE #0 r315336: Wed Ma= r 15 20:06:21 EDT 2017 root@alto.localdomain:/usr/obj/usr/src/sys/GENERIC a= md64 Make details: make install clean =3D=3D=3D> openjdk8-8.121.13 depends on executable: zip - found =3D=3D=3D> openjdk8-8.121.13 depends on file: /usr/local/include/cups/cup= s.h - found =3D=3D=3D> openjdk8-8.121.13 depends on executable: bash - found =3D=3D=3D> openjdk8-8.121.13 depends on executable: gmake - found =3D=3D=3D> openjdk8-8.121.13 depends on package: libiconv>=3D1.14_9 - fou= nd =3D=3D=3D> openjdk8-8.121.13 depends on package: pkgconf>=3D1.3.0_1 - fou= nd =3D=3D=3D> openjdk8-8.121.13 depends on file: /usr/local/bin/autoconf-2.6= 9 - found =3D=3D=3D> openjdk8-8.121.13 depends on shared library: libasound.so - fo= und (/usr/local/lib/libasound.so) =3D=3D=3D> openjdk8-8.121.13 depends on shared library: libfreetype.so - = found (/usr/local/lib/libfreetype.so) =3D=3D=3D> openjdk8-8.121.13 depends on shared library: libfontconfig.so = - found (/usr/local/lib/libfontconfig.so) =3D=3D=3D> openjdk8-8.121.13 depends on shared library: libgif.so - found (/usr/local/lib/libgif.so) =3D=3D=3D> openjdk8-8.121.13 depends on shared library: libX11.so.6 - fou= nd (/usr/local/lib/libX11.so.6) =3D=3D=3D> openjdk8-8.121.13 depends on shared library: libXext.so.6 - fo= und (/usr/local/lib/libXext.so.6) =3D=3D=3D> openjdk8-8.121.13 depends on shared library: libXi.so.6 - found (/usr/local/lib/libXi.so.6) =3D=3D=3D> openjdk8-8.121.13 depends on shared library: libXrender.so.1 -= found (/usr/local/lib/libXrender.so.1) =3D=3D=3D> openjdk8-8.121.13 depends on shared library: libXt.so.6 - found (/usr/local/lib/libXt.so.6) =3D=3D=3D> openjdk8-8.121.13 depends on shared library: libXtst.so.6 - fo= und (/usr/local/lib/libXtst.so.6) =3D=3D=3D> Configuring for openjdk8-8.121.13 Warning: You are using legacy autoconf cross-compilation flags. It is recommended that you use --openjdk-target instead. Running generated-configure.sh ./../../common/autoconf/generated-configure.sh: redirection error: cannot duplicate fd: Bad file descriptor ./../../common/autoconf/generated-configure.sh: line 561: 1: Bad file descriptor configure exiting with result code 1 =3D=3D=3D> Script "../../configure" failed unexpectedly. Please report the problem to java@FreeBSD.org [maintainer] and attach the "/usr/ports/java/openjdk8/work/openjdk/common/autoconf/config.log" including the output of the failure of your make command. Also, it might be a good id= ea to provide an overview of all packages installed on your system (e.g. a /usr/local/sbin/pkg-static info -g -Ea). *** Error code 1 Stop. make[1]: stopped in /usr/ports/java/openjdk8 *** Error code 1 Stop. make: stopped in /usr/ports/java/openjdk8 --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-java@freebsd.org Thu Mar 16 17:32:41 2017 Return-Path: Delivered-To: freebsd-java@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C0633D0F6E2 for ; Thu, 16 Mar 2017 17:32:41 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id A6436143E for ; Thu, 16 Mar 2017 17:32:41 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id A5A89D0F6E1; Thu, 16 Mar 2017 17:32:41 +0000 (UTC) Delivered-To: java@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A554DD0F6E0 for ; Thu, 16 Mar 2017 17:32:41 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 95182143B for ; Thu, 16 Mar 2017 17:32:41 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v2GHWfHK081703 for ; Thu, 16 Mar 2017 17:32:41 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: java@FreeBSD.org Subject: [Bug 217846] Port: java/openjdk8 fails at the configure stage Date: Thu, 16 Mar 2017 17:32:41 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: transitive@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: java@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2017 17:32:41 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D217846 --- Comment #1 from Robert Cina --- Created attachment 180882 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D180882&action= =3Dedit Synth log of failed java/openjdk8 build --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-java@freebsd.org Fri Mar 17 21:29:03 2017 Return-Path: Delivered-To: freebsd-java@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 12E15D10AD6 for ; Fri, 17 Mar 2017 21:29:03 +0000 (UTC) (envelope-from michael.osipov@siemens.com) Received: from david.siemens.de (david.siemens.de [192.35.17.14]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "david.siemens.de", Issuer "Siemens Issuing CA Class Internet Server 2013" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 992C91ECB for ; Fri, 17 Mar 2017 21:29:02 +0000 (UTC) (envelope-from michael.osipov@siemens.com) Received: from mail2.sbs.de (mail2.sbs.de [192.129.41.66]) by david.siemens.de (8.15.2/8.15.2) with ESMTPS id v2HLCcOx015979 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK); Fri, 17 Mar 2017 22:12:38 +0100 Received: from DEFTHW99ERGMSX.ww902.siemens.net (defthw99ergmsx.ww902.siemens.net [139.22.70.132]) by mail2.sbs.de (8.15.2/8.15.2) with ESMTPS id v2HLCcei024475 (version=TLSv1 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Fri, 17 Mar 2017 22:12:38 +0100 Received: from DEFTHW99EREMSX.ww902.siemens.net (139.22.70.66) by DEFTHW99ERGMSX.ww902.siemens.net (139.22.70.132) with Microsoft SMTP Server (TLS) id 14.3.339.0; Fri, 17 Mar 2017 22:12:38 +0100 Received: from DEFTHW99EJ5MSX.ww902.siemens.net ([169.254.6.192]) by DEFTHW99EREMSX.ww902.siemens.net ([139.22.70.66]) with mapi id 14.03.0339.000; Fri, 17 Mar 2017 22:12:37 +0100 From: "Osipov, Michael" To: "rb@gid.co.uk" CC: "freebsd-java@freebsd.org" Subject: RE: Needle in the haystack: same Java code on two identical machines, one passes one fails Thread-Topic: Needle in the haystack: same Java code on two identical machines, one passes one fails Thread-Index: AdKdm2q0eGsP3SuqQcO0wrNX1weRrAAAE+wAACadAyAAAtcAAABIToRA Date: Fri, 17 Mar 2017 21:12:37 +0000 Message-ID: <68644224DA0DE64CA5A49838ED219A0425C0F86C@DEFTHW99EJ5MSX.ww902.siemens.net> References: <68644224DA0DE64CA5A49838ED219A0425C0F0EA@DEFTHW99EJ5MSX.ww902.siemens.net> <68644224DA0DE64CA5A49838ED219A0425C0F406@DEFTHW99EJ5MSX.ww902.siemens.net> <222B5FF3-F901-4D6C-9A67-DC7C72E60FC4@gid.co.uk> In-Reply-To: <222B5FF3-F901-4D6C-9A67-DC7C72E60FC4@gid.co.uk> Accept-Language: de-DE, en-US Content-Language: de-DE X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [139.22.70.21] Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: base64 MIME-Version: 1.0 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Mar 2017 21:29:03 -0000 PiBIaSwNCj4gDQo+ID4gT24gMTYgTWFyIDIwMTcsIGF0IDA5OjU2LCBPc2lwb3YsIE1pY2hhZWwg PG1pY2hhZWwub3NpcG92QHNpZW1lbnMuY29tPg0KPiB3cm90ZToNCj4gPiBb4oCmXQ0KPiA+DQo+ ID4gVXBkYXRlZCBib3RoIG1hY2hpbmVzOg0KPiA+IEZyZWVCU0QgYmxubjcxOXgud3cwMDQuc2ll bWVucy5uZXQgMTAuMy1TVEFCTEUgRnJlZUJTRCAxMC4zLVNUQUJMRSAjMg0KPiByMzE1MzEyOiBX ZWQgTWFyIDE1IDE5OjU5OjU4IENFVCAyMDE3DQo+IHJvb3RAYmxubjcxOXgud3cwMDQuc2llbWVu cy5uZXQ6L3Vzci9vYmovdXNyL3NyYy9zeXMvQkxOTjcxOVggIGkzODYNCj4gPg0KPiA+IEZyZWVC U0QgYmxubjcxNHgud3cwMDQuc2llbWVucy5uZXQgMTAuMy1TVEFCTEUgRnJlZUJTRCAxMC4zLVNU QUJMRSAjMg0KPiByMzE1MzEyOiBXZWQgTWFyIDE1IDE5OjU1OjM5IENFVCAyMDE3DQo+IHJvb3RA YmxubjcxNHgud3cwMDQuc2llbWVucy5uZXQ6L3Vzci9vYmovdXNyL3NyYy9zeXMvQkxOTjcxNFgg IGkzODYNCj4gPg0KPiA+IE5vIGF2YWlsLiBJdCB3YXMgd29ydGggYSB0cnksIGF0IGxlYXN0Lg0K PiA+DQo+IA0KPiBJbmRlZWQuIEdpdmVuIHRoZSBzeW1wdG9tcywgbmV4dCB0aGluZyBJIHdvdWxk IGRvIHdvdWxkIGJlIHRvIGNoZWNrDQo+IGV4YWN0bHkgd2hhdCB2ZXJzaW9ucyBvZiBzaGFyZWQg bGlicmFyaWVzIHRoZSBqYXZhIGJpbmFyaWVzIG9uIGJvdGggc2lkZXMNCj4gYXJlIGxvYWRpbmcg YW5kIGNoYXNlIGRvd24gYW55IGRpZmZlcmVuY2VzLg0KPiANCj4gSWYgdGhhdCBkb2VzbuKAmXQg aGVscCwgY2hlY2sgdGhhdCB0aGUgQ0xBU1NQQVRIcyBhcmUgaWRlbnRpY2FsLCBjaGVjayB0aGUN Cj4gdmVyc2lvbnMgb2YgZXZlcnl0aGluZyBsb2FkZWQgZnJvbSBzdGFuZGFyZCBleHRlbnNpb25z IG9yIHRoZSBDTEFTU1BBVEgsDQo+IGFuZCBjaGFzZSBkb3duIGFueSBkaWZmZXJlbmNlcy4NCg0K SSBhY3R1YWxseSBkaWQgdGhhdCB5ZXN0ZXJkYXkuIENvbXBhcmVkIE1BTklGRVNULk1GLCBTdXJl ZmlyZSBzdGFydCBjb25maWcNCndpdGggY2xhc2FwYXRoLCBldmVuIHVzZWQgdHJ1c3MgYW5kIGNv bXBhcmVkLiBObyBkaWZmZXJlbmNlIGFwcGFyZW50bHkuDQoNCkkgYWxzbyBkaWQgcHJlcGVuZCAi c3RkYnVmIC1pIDAgLW8gMCIgdG8gYWxsIHByb2Nlc3Nlcywgbm8gYXZhaWwuDQoNClRoaXMgb25l IGlzIHJlYWxseSB0cmlja3kuIEkgd29uJ3QgcmVpbnN0YWxsIHRoZSBlbnRpcmUgbWFjaGluZSwg SSB3aWxsLA0KVW5mb3J0dW5hdGVseSwgbWFyayB0aGlzIG1hY2hpbmUvT1MgaW5zdGFsbGF0aW9u IGFzIGRlZmVjdGl2ZS4NCg0KTWljaGFlbA0K