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 0CA70A0561 for ; Wed, 3 Mar 2021 10:04:14 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id F0DB31606EE; Wed, 3 Mar 2021 10:04:13 +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 C819040684 for ; Wed, 3 Mar 2021 10:04:11 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1614762251; 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=kRdMoiVhtuCqtgWzpLOJZyKy7yRZa+pcxOydLdxWB2A=; b=bYTTepfEtI2ch1F1wjkmCS9O9gEKSxoaZL2OHTUAJrsoZIghxPge3cb2k2xElWnMrepJLD ML/6nJM/FSkmLpUO32O10zev9WY51j/ETh9ZAS3WU4Y6VgJWxv3HrctnWNyLz+QC83xWVI m3HD8OgROQ5tKDuEgVODJvVPz7EBo+8= Received: from mail-ua1-f72.google.com (mail-ua1-f72.google.com [209.85.222.72]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-325-74mjmNGjOEKGSVacsKsRYA-1; Wed, 03 Mar 2021 04:04:07 -0500 X-MC-Unique: 74mjmNGjOEKGSVacsKsRYA-1 Received: by mail-ua1-f72.google.com with SMTP id m62so705787uam.16 for ; Wed, 03 Mar 2021 01:04:07 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=kRdMoiVhtuCqtgWzpLOJZyKy7yRZa+pcxOydLdxWB2A=; b=lX8vhE2KnJXEJs7sOVSkfTxdqBDMz6L3dNr/fHBGJ7+NPwnJMgJEfbHe/CiAWD4Iau U91tH8XByTiYZsPbx+k4H63E4+cXeDRNG8b97Cqx/fwfWt2ofM7gavm6jXkPbaNCo8Hu GgGdprMbKbDAqfv83BJYOalvatk1vg0PnyN/BIH3FxckJAXr7K3bxq9XzR9LZSj1wL6d lNQ0qgwmLOsCDrG9Hb1jwVrlBjY3jsxBzXsWYrMXfDj4gzmPNzbm5Xw991B82KtrArJL AGNHfjPSFJ2EnzbxMErOICvzxuP7a4S7RD+JE3TSRGIm4FXH82L8pLKkXwsP94IgWFfY yMPg== X-Gm-Message-State: AOAM533CorE/fK9qu4+Pdr8vcabZ1/Z4FgytIQ9OvophA7ujxeXYQ7qX ZF73VU8cdBjkSc26uaopma9sq3dPzwkDvH2ritPS1T6fXQIP/TZKSoyFyvFa98K6Akbk4XbjEmM lJzFOGakeMVvOuuqVJH/pKc8= X-Received: by 2002:a9f:2722:: with SMTP id a31mr268588uaa.86.1614762247222; Wed, 03 Mar 2021 01:04:07 -0800 (PST) X-Google-Smtp-Source: ABdhPJyLFPopseEGzf1GWV0HpihWvu/HCIfuDTkbYjZeLY9Tcz8gNAKVJ2emAWxE1zYmRMPiQ8AckNthMc78tq8XWAw= X-Received: by 2002:a9f:2722:: with SMTP id a31mr268585uaa.86.1614762247061; Wed, 03 Mar 2021 01:04:07 -0800 (PST) MIME-Version: 1.0 References: <20210111100146.3485-1-david.marchand@redhat.com> <20210125150539.27537-1-david.marchand@redhat.com> In-Reply-To: <20210125150539.27537-1-david.marchand@redhat.com> From: David Marchand Date: Wed, 3 Mar 2021 10:03:55 +0100 Message-ID: To: dev Cc: Aaron Conole , Michael Santana , Olivier Matz , dpdk stable Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=dmarchan@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-stable] [dpdk-dev] [PATCH v2] ci: catch coredumps X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" On Mon, Jan 25, 2021 at 4:06 PM David Marchand wrote: > > 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. > As suggested by Luca, marking for backport. Cc: stable@dpdk.org > Signed-off-by: David Marchand Acked-by: Luca Boccassi Acked-by: Aaron Conole -- David Marchand