From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 4547CA0573; Tue, 2 Mar 2021 22:17:25 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 062B740FDF; Tue, 2 Mar 2021 22:17:25 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [216.205.24.124]) by mails.dpdk.org (Postfix) with ESMTP id 5593F4014E for ; Tue, 2 Mar 2021 22:17:23 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1614719842; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=Faf2L4lIsDFmXBZBx2GU/niX3ajv++DZkO6mQzA0Ic0=; b=dnV+B9Jy+hPUI21L95kgsYtDfPRlWUr3kVblUUFTzTpPwNpCQRQY5Mrz/jiMrR59s+UJdM 4UI89Pb40xh5487Z8nG+lBG/sUPkYN7exPq3EHwtyWEDrFyEjoo2ozyI2Ccq/p+FIWPff2 bJaTFiRlG+4+26yOYdP0XP+8flt8QvI= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-401-RAww2dCmOCqz7qHwL-XlyA-1; Tue, 02 Mar 2021 16:17:21 -0500 X-MC-Unique: RAww2dCmOCqz7qHwL-XlyA-1 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id D7AC580196C; Tue, 2 Mar 2021 21:17:19 +0000 (UTC) Received: from dhcp-25.97.bos.redhat.com (ovpn-119-172.rdu2.redhat.com [10.10.119.172]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 5117462665; Tue, 2 Mar 2021 21:17:12 +0000 (UTC) From: Aaron Conole To: David Marchand Cc: dev@dpdk.org, Michael Santana , Olivier Matz References: <20210111100146.3485-1-david.marchand@redhat.com> <20210125150539.27537-1-david.marchand@redhat.com> Date: Tue, 02 Mar 2021 16:17:11 -0500 In-Reply-To: <20210125150539.27537-1-david.marchand@redhat.com> (David Marchand's message of "Mon, 25 Jan 2021 16:05:39 +0100") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=aconole@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain Subject: Re: [dpdk-dev] [PATCH v2] ci: catch coredumps X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" David Marchand writes: > Parts of the unit tests code rely on forked/secondary processes > (expectedly) failing. > A crash in those situations could be missed so add a check on coredumps > presence after unit tests have run. > When unit tests fail, it can also help checking for coredumps as it > could give more insights on what happened. > > In some situations (like explicit call to rte_panic), coredump generation > must be disabled to avoid false positives. > > Signed-off-by: David Marchand > --- I had this in my backlog and accidentally marked it 'visited' - sorry about that. Acked-by: Aaron Conole