From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id B8DB1A0528; Fri, 17 Jul 2020 10:54:54 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 7EBE61BF84; Fri, 17 Jul 2020 10:54:54 +0200 (CEST) Received: from us-smtp-1.mimecast.com (us-smtp-delivery-1.mimecast.com [205.139.110.120]) by dpdk.org (Postfix) with ESMTP id CA0111BF83 for ; Fri, 17 Jul 2020 10:54:52 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1594976092; 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=1qEPiFgqSMhSFvDf0VFCdoRSeLhCIXm2Q4IEbdL2w0M=; b=TbC2dTOukqAz2e8is+7Tyc6Kfl7sW3ihuwYbcoCnxw73UiPIXfx9z36nwHEk5IH+HX30rh iLliSMs2TdwgZ5nZR7KGUbnVlPNv2l5QoDwWh9F0FqqfC/XXSsoICzxFFHz49Pua3k6axX Y/DoJO8UKIe7m3DmMs61Rl4VbCVWqvc= Received: from mail-vk1-f200.google.com (mail-vk1-f200.google.com [209.85.221.200]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-126-4t1VjRpsNYSx4-HYikmGnA-1; Fri, 17 Jul 2020 04:54:48 -0400 X-MC-Unique: 4t1VjRpsNYSx4-HYikmGnA-1 Received: by mail-vk1-f200.google.com with SMTP id n133so3157575vkc.14 for ; Fri, 17 Jul 2020 01:54:48 -0700 (PDT) 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=1qEPiFgqSMhSFvDf0VFCdoRSeLhCIXm2Q4IEbdL2w0M=; b=K3UA88ElZSpRvIrVYaJ/B5rb27kniRlmiqG1hRFf8gJ8YTOWiMeqTDY9prAPlnTtiF WGNAC0zJoUxop3+kJwslOL/0r0sTyOMcTLsVaES3zhefMSrdNN0aJkpaDjt57Bp/zB18 RO0lANvwpTBeItbB1qvf+nupXHzIGj4L7zsnyOMq80INdtErftc6V5NEis2l6R3+aN/+ sWLn9lpfduJL68WylprvRTFDsFF6ARPFXu2tsnVcvGCauMa6NzdEXCYZxBi339ElWKAL PTb/2pF2u/6lOX4OEbD6Tyy9hA1GtmOZcYg4p4V/wkD9t5WGH5HtY8SOzGjQsdqo9cNo dkgA== X-Gm-Message-State: AOAM5331ZelokQF+wED7lP9wcntQUCVDZBJxz/eL/bpCtkmePrOzoCid uRsOL8GKFKIDK1ux/xpMaMiBzme3mlL8Bd2r4UeqiPsR3FhyiBjtPrtCGBR1RRx/9wo2C15Pgwz 5YfKhEJUuL0+HNW3cqDM= X-Received: by 2002:a67:c58c:: with SMTP id h12mr6398656vsk.141.1594976088141; Fri, 17 Jul 2020 01:54:48 -0700 (PDT) X-Google-Smtp-Source: ABdhPJyYVFX+ygwLR6wjH4NRyAytP8WqBZAG1dr61NMPNmfE4dRMHYE8AN71QzWiRkMQ8T2F+F369pFRBxZ1sMCE9Rg= X-Received: by 2002:a67:c58c:: with SMTP id h12mr6398642vsk.141.1594976087881; Fri, 17 Jul 2020 01:54:47 -0700 (PDT) MIME-Version: 1.0 References: <20200715202006.19781-1-honnappa.nagarahalli@arm.com> <20200716183927.32967-1-honnappa.nagarahalli@arm.com> In-Reply-To: <20200716183927.32967-1-honnappa.nagarahalli@arm.com> From: David Marchand Date: Fri, 17 Jul 2020 10:54:36 +0200 Message-ID: To: Honnappa Nagarahalli Cc: dev , Lukasz Wojciechowski , Aaron Conole , nd , Jerin Jacob Kollanukkaran , Hemant Agrawal , Nipun Gupta , Pavan Nikhilesh 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-dev] [PATCH v2] eal: change the log level for test assert macro X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 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" On Thu, Jul 16, 2020 at 8:39 PM Honnappa Nagarahalli wrote: > > Change the log level for RTE_TEST_ASSERT macro to error to help > log errors while running test cases. > > Suggested-by: David Marchand > Signed-off-by: Honnappa Nagarahalli > Acked-by: Aaron Conole > Acked-by: Lukasz Wojciechowski We need this patch for the CI. The change looks safe to me, so I went and applied it without waiting for feedback from eventdev guys. Thanks Honnappa. -- David Marchand