From patchwork Fri Dec 9 09:02:21 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Marchand X-Patchwork-Id: 120693 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 386DCA00C2; Fri, 9 Dec 2022 10:02:41 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id C7A1A40E0F; Fri, 9 Dec 2022 10:02:40 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mails.dpdk.org (Postfix) with ESMTP id C7E3040E03 for ; Fri, 9 Dec 2022 10:02:39 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1670576559; 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: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=JXENN3mxnzWnk+TnrpV4RlT27nRxQwO+TnY0ff4/w1w=; b=bIHEpO6jc1cMjucVn7O9OCCyXqgrrXwyHjneT7d8DhERJd8otBZUgPxI0Dyw8pjT7nNudt Y9prEqpaUWR1BZJTh/yZ8z7YnqvGx8RcdBWFHuuE8vp1UGKRSaNjsL7XCmN2onm/t5T/De pT4SYNI+NsbVT06SEcZRhZVmc8aLHyo= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-22-DyCpD7oNPS-36E4pajVpSg-1; Fri, 09 Dec 2022 04:02:35 -0500 X-MC-Unique: DyCpD7oNPS-36E4pajVpSg-1 Received: from smtp.corp.redhat.com (int-mx09.intmail.prod.int.rdu2.redhat.com [10.11.54.9]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id A2B65101A528; Fri, 9 Dec 2022 09:02:34 +0000 (UTC) Received: from localhost.localdomain (ovpn-194-246.brq.redhat.com [10.40.194.246]) by smtp.corp.redhat.com (Postfix) with ESMTP id 5529C492CA2; Fri, 9 Dec 2022 09:02:33 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: thomas@monjalon.net, bruce.richardson@intel.com, gakhil@marvell.com, Ferruh Yigit Subject: [PATCH v2 1/2] devtools: document test meson script config options Date: Fri, 9 Dec 2022 10:02:21 +0100 Message-Id: <20221209090222.441690-1-david.marchand@redhat.com> In-Reply-To: <20221206122341.3046688-1-ferruh.yigit@amd.com> References: <20221206122341.3046688-1-ferruh.yigit@amd.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.9 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com 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 From: Ferruh Yigit Document config options of script that can be provided by 'devel.config' config file. Signed-off-by: Ferruh Yigit --- devtools/test-meson-builds.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/devtools/test-meson-builds.sh b/devtools/test-meson-builds.sh index 7efd5576fc..02541c19aa 100755 --- a/devtools/test-meson-builds.sh +++ b/devtools/test-meson-builds.sh @@ -12,6 +12,16 @@ PIPEFAIL="" set -o | grep -q pipefail && set -o pipefail && PIPEFAIL=1 srcdir=$(dirname $(readlink -f $0))/.. + +# Load config options: +# - DPDK_BUILD_TEST_DIR +# +# - DPDK_MESON_OPTIONS +# +# - DPDK_ABI_REF_DIR +# - DPDK_ABI_REF_VERSION +# +# - DPDK_BUILD_TEST_EXAMPLES . $srcdir/devtools/load-devel-config MESON=${MESON:-meson}