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 98287A04B5; Mon, 16 Nov 2020 15:28:12 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 3E41531FC; Mon, 16 Nov 2020 15:28:10 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [216.205.24.124]) by dpdk.org (Postfix) with ESMTP id 63950F3E for ; Mon, 16 Nov 2020 15:28:07 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1605536885; 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=r0HibpgZR3xS4YDwe6Pz/pOsi6vRKe5BahTjgakmvVg=; b=aDzDWQG9vZzBjEZmLVadMV7M8ryPZ1r33B9jghYZHV6bLUrcEH11oxIjRXKlyt8J91MtVv ChebLTDZgz1y11PuxS76E3vWknqfW0X8bkwt8/hQRxR8Lb25xcwdcYMcUjqVHOPzjmWF0L GDy46kooN1UvfwVe/nPL1gxo9TITYIc= Received: from mail-vk1-f198.google.com (mail-vk1-f198.google.com [209.85.221.198]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-517-EE330WuVOQua7wIdXVnwQw-1; Mon, 16 Nov 2020 09:28:04 -0500 X-MC-Unique: EE330WuVOQua7wIdXVnwQw-1 Received: by mail-vk1-f198.google.com with SMTP id b4so390114vkg.10 for ; Mon, 16 Nov 2020 06:28:04 -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=r0HibpgZR3xS4YDwe6Pz/pOsi6vRKe5BahTjgakmvVg=; b=kYgf6fSsjuEkpFtg1p2kM8ik9+bGGsFI2ot/4b0JdU93eI+GzG11jzbDEgONJzCYrU trqT/Yfa5DOh2hfyNq/fFQe2WFLN7G+uX/Ogba0Bx0DIDKcuK1cb8mknTRm+ra2Vrv/P RO5x3OrM9CYxShAHJEW93RVI3qrZp1VAPH2WlwTPl9LqreyAFeb6IzDYMPjPqvpynQDR Q+zT0LBNrJlptaGemDfelaJPdVapDjpjt7hyDs1zJSMrKfOPYTASLTZLmPCxrpIoWmRC WpYYQQrSZX2ljpgWzIxMN88zKy02LQvh1qrAv/VCJDcGUI3HqsJzFeSStX16P9iEt71X 4DeQ== X-Gm-Message-State: AOAM530fFVulLoZhvn0JOqblNKgOurZFZd+jOLTcLpR/+D+De3VWCKRr 2AePoO6ni52mYrYua4j6/hqDNvuPB/ww68+Ofn317Yie6i3o3Khi6zhMV/t1O2RAl8P6CTuouHF x8rx8TeQrB0gnKy3qvhQ= X-Received: by 2002:a05:6102:2362:: with SMTP id o2mr8348570vsa.5.1605536883798; Mon, 16 Nov 2020 06:28:03 -0800 (PST) X-Google-Smtp-Source: ABdhPJySoD2LlCkkXvbl1h7/4aFTxRW3JL4DCQVDqgMOu/iPaL3IJrpNF3N2c6rOCQCARnqjfMBtB5X/5APtwwEP1IY= X-Received: by 2002:a05:6102:2362:: with SMTP id o2mr8348554vsa.5.1605536883544; Mon, 16 Nov 2020 06:28:03 -0800 (PST) MIME-Version: 1.0 References: <20201112163901.1728959-1-thomas@monjalon.net> In-Reply-To: <20201112163901.1728959-1-thomas@monjalon.net> From: David Marchand Date: Mon, 16 Nov 2020 15:27:52 +0100 Message-ID: To: Thomas Monjalon , Bruce Richardson Cc: dev 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 1/1] devtools: rename build test verbosity variables 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, Nov 12, 2020 at 5:39 PM Thomas Monjalon wrote: > > For consistency with other variables which can be set from the env, > TEST_MESON_BUILD_VERBOSE and TEST_MESON_BUILD_VERY_VERBOSE > are renamed > DPDK_BUILD_TEST_VERBOSE and DPDK_BUILD_TEST_VERY_VERBOSE. It seems a bit odd to take inputs from both the script parameters and the env to control something. Those TEST_MESON_BUILD* vars seem internal stuff that should not be exposed. -- David Marchand