From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) Subject: bug#19780: 13 failing tests Date: Tue, 10 Feb 2015 16:49:56 +0100 Message-ID: <87d25h6a1n.fsf@gnu.org> References: <874mqxprk6.fsf@gnu.org> <87vbja7xat.fsf@gnu.org> <87sied7s9p.fsf@gnu.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:55861) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YLD5g-0000GR-Cy for bug-guix@gnu.org; Tue, 10 Feb 2015 10:51:09 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YLD5b-00010D-2v for bug-guix@gnu.org; Tue, 10 Feb 2015 10:51:08 -0500 Received: from debbugs.gnu.org ([140.186.70.43]:48258) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YLD5a-000103-Td for bug-guix@gnu.org; Tue, 10 Feb 2015 10:51:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.80) (envelope-from ) id 1YLD5a-0007E5-KL for bug-guix@gnu.org; Tue, 10 Feb 2015 10:51:02 -0500 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: (Ricardo Wurmus's message of "Tue, 10 Feb 2015 15:59:01 +0100") List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org To: Ricardo Wurmus Cc: 19780@debbugs.gnu.org --=-=-= Content-Type: text/plain Ricardo Wurmus skribis: > Oddly, I cannot seem to get a core dump, even after setting ulimit -c > unlimited. Is there a way to run the failing builder manually? No. Could you try something like this: --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/test-env.in b/test-env.in index f66a0db..9cdd479 100644 --- a/test-env.in +++ b/test-env.in @@ -90,7 +90,8 @@ then --substitute-urls="$GUIX_BINARY_SUBSTITUTE_URL" & daemon_pid=$! - trap "kill $daemon_pid ; rm -rf $NIX_STATE_DIR" EXIT + echo "please attach gdb to $daemon_pid and hit enter" + read fi # Avoid issues that could stem from l10n, such as language/encoding --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable When you see the message, run this from another terminal: $ gdb (gdb) attach 1234 (gdb) set detach-on-fork off (gdb) continue Normally GDB will stop when the child process receives SIGSEGV. At that point, you should be able to type =E2=80=9Cbt=E2=80=9D to get the backtrace. Could you try that? Thanks in advance, Ludo=E2=80=99. --=-=-=--