From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 13901 invoked by alias); 20 Mar 2012 02:30:47 -0000 Received: (qmail 13887 invoked by uid 22791); 20 Mar 2012 02:30:45 -0000 X-SWARE-Spam-Status: No, hits=-4.6 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_HI,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from smtp.gentoo.org (HELO smtp.gentoo.org) (140.211.166.183) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 20 Mar 2012 02:30:20 +0000 Received: from vapier.localnet (localhost [127.0.0.1]) by smtp.gentoo.org (Postfix) with ESMTP id AEBD41B400D; Tue, 20 Mar 2012 02:30:18 +0000 (UTC) From: Mike Frysinger To: gdb-patches@sourceware.org Subject: Re: Please fix regressions from your sim changes Date: Tue, 20 Mar 2012 02:30:00 -0000 User-Agent: KMail/1.13.7 (Linux/3.2.0; KDE/4.6.5; x86_64; ; ) Cc: "Hans-Peter Nilsson" References: <201203192350.q2JNogb6032347@ignucius.se.axis.com> In-Reply-To: <201203192350.q2JNogb6032347@ignucius.se.axis.com> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart16867759.Ydgur4vDCd"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <201203192230.21867.vapier@gentoo.org> X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2012-03/txt/msg00729.txt.bz2 --nextPart16867759.Ydgur4vDCd Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-length: 1523 On Monday 19 March 2012 19:50:42 Hans-Peter Nilsson wrote: > From: Mike Frysinger > > On Monday 19 March 2012 02:28:49 Hans-Peter Nilsson wrote: > > > For mips-elf, there's just > >=20 > > mips-elf is passing for me > >=20 > > > FAIL: mips1 hilo-hazard-1.s (execution) > >=20 > > the glob should eat the new signal string > >=20 > > > And really, why removing the "program stopped with signal" > > > common part? I see no reason to not just adding it back. > >=20 > > it wasn't removed. the signal is now additionally being decoded. > >=20 > > before: program stopped with signal 5. > > after: program stopped with signal 5 (Trace/breakpoint trap). >=20 > That's what you'd think (and that'd be an improvement), but the > message really is all gone. Is it a host issue? The tester > host is admittedly an aging installation, F 8 x86_64. if you run it manually, do you get the full string ? it's passing on my si= de=20 just fine: spawn /usr/local/src/gnu/sourceware/build/build-mips/sim/testsuite/../mips/= run=20 hilo-hazard-1.s.x HILO: MULT: OP at 0x80010048 too close to MF at 0x80010044 program stopped with signal 6 (Aborted). PASS: mips1 hilo-hazard-1.s you can see the commit in question clearly doesn't remove the msg: --- a/sim/common/nrun.c +++ b/sim/common/nrun.c - fprintf (stderr, "program stopped with signal %d.\n", sigrc); + fprintf (stderr, "program stopped with signal %d (%s).\n", sigrc, + strsignal (sigrc)); maybe strsignal() is crashing ? what version of glibc ? -mike --nextPart16867759.Ydgur4vDCd Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part. Content-length: 836 -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.17 (GNU/Linux) iQIcBAABAgAGBQJPZ+u9AAoJEEFjO5/oN/WBvJwP/1mJT9mYt/NTGRFThbUbVwL/ Oh8SaDskaPvUSW8JUUc0NNEtLdDcfHcD//OERJGcTQM4YFWIo5EYJ45CB1VvA7vE jjKDFqej1eTwdFU8XpqFpOhzcCpYr8LsO2K+gUpqU5qOGOBdZ+DUA80hJFBjcYgM d/XizKyixHUlA03g73s2OSbD82FmDmB5/fYlgrfT0enYz+NNEtwj/HC28jj5peMO artPVCvMwJZehwNQp4D0EnRNiWoxzNHnt8DUSfY4GdYzKnjDFLV/3sMlI5E+BZhV JA3xAgKBxCY4dqNG+hUFvAYCX5+BaL4cNKm3jyhDpsOMw9nelq7Ch/d/obZaGLp1 xWXhhSY3wguW+NoNoOmUabAm5IGlUE6HUCJqJDuLXi5nN2hVxUkQtf7A0oX4f4vL 0IguLimReMpjD3ilF/vBjoXtxVzlSTUppkut+D4Ys2oNZXDufIg3fQx1Z4ympp89 HCGIkjKjAWj2Xx7dG+ChoSfzswZRn03L5BDCvXeMym9b0DITdzUxN/0wb/JD2sfP dZCX7t1tW6NIVLZ7QYPtTl4wR9mhykWaZ5/BOBjHpjarIgim4Bh7ciq66W1cE+3x W4aEQqIWoXVshTLRT8Pg64sH6Z7RE8U+jYl5fgSCXvI7kyzFCV+vXZV27EbtmzYW EOYtp/M8f0Rd2zL3cmc6 =wQNP -----END PGP SIGNATURE----- --nextPart16867759.Ydgur4vDCd--