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 3E40BA0C47; Fri, 17 Sep 2021 00:27:40 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 6FF13410E9; Fri, 17 Sep 2021 00:27:05 +0200 (CEST) Received: from mail-pj1-f41.google.com (mail-pj1-f41.google.com [209.85.216.41]) by mails.dpdk.org (Postfix) with ESMTP id 137AD41124 for ; Fri, 17 Sep 2021 00:26:56 +0200 (CEST) Received: by mail-pj1-f41.google.com with SMTP id n13-20020a17090a4e0d00b0017946980d8dso8581861pjh.5 for ; Thu, 16 Sep 2021 15:26:56 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20210112.gappssmtp.com; s=20210112; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=JmYpUK+splkuju07l+nJgBXHXn15JO+cBFCf2w/FyTs=; b=sxfKv/Oz0QzMuHxgiMXsh1dpYQ+axb1036zNT6nrqek4PEsNnBomPNZvNuBhoK8Rfo dB4+ftlowqX9dekBlGj2sJZz0iXnP0o4xS8+E/iCB+aaDiMNpNE1TQef+iWAaiEyTLxs 9JOG84ooP2LD/r7WGrLpgFp9aL5f3t7As8hpepCvKNYNL7rB0/WMOtwkY35eo6Ubjr2D FqnoMoXFLP5hRZbXgENPTmcT/IsrgSgKcV2f2MQUx8IxGw/vGkSKvs3x1+XOZIlvmBy2 dpFzakcmVXU0gzJQnRAUZSjCKks0nEQkyIt0E09uoFzwhPUaRps+IP2K5fKKCU+D4+yD 8bOg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=JmYpUK+splkuju07l+nJgBXHXn15JO+cBFCf2w/FyTs=; b=lYs6z2x1ZN4HfpRB/+VIsDORoo9HJWdjLp3j58zybK1FlZDMMqe12pozHWOi455rzD tCZ+1d58qiMrnBXN1S2xWSKBNhfGRyfdP70aa6N0A76IX09RMD5E5WTwRhQeKnK8lKdT lOS0TZJQ3W1I9Bvc0da/ztuNlGPuSad+vJaL/1iO/9/dBzugWgh88w+2K3Th6Ea6tQrT nCUN/ukF3IICDfWGmsbbqQMRSALJvH03iRQA3zl54AGeGiwMlnG1w/AsVUyPpJb47C+1 WW7Zot+g3v5lFtS20xJAoC+dTtOUYmj0qGrrOYeyvf6GX25zF/pji93YGjh8cYGj8Nwx DOHw== X-Gm-Message-State: AOAM531+DLPfyi2GL/mDPHXmuo/6+g9LqZcPOwCiaQkcMPiB3a5WrGnK EUw8tMVhZQKPckxzti+wj0LEsPhYSuCOKg== X-Google-Smtp-Source: ABdhPJwo4yzFURHp3u/ywG2Nyqse0RcJw/Yzk4CtcO0WPoqF4zR1JojDddKFbyWXLuA0MQjYVWGu1A== X-Received: by 2002:a17:90b:4b06:: with SMTP id lx6mr17462593pjb.160.1631831214833; Thu, 16 Sep 2021 15:26:54 -0700 (PDT) Received: from hermes.local (204-195-33-123.wavecable.com. [204.195.33.123]) by smtp.gmail.com with ESMTPSA id 3sm3937169pfp.112.2021.09.16.15.26.52 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 16 Sep 2021 15:26:53 -0700 (PDT) From: Stephen Hemminger To: dev@dpdk.org Cc: Stephen Hemminger , Konstantin Ananyev Date: Thu, 16 Sep 2021 15:26:28 -0700 Message-Id: <20210916222630.71543-11-stephen@networkplumber.org> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20210916222630.71543-1-stephen@networkplumber.org> References: <20210903004732.109023-1-stephen@networkplumber.org> <20210916222630.71543-1-stephen@networkplumber.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH v10 10/12] test: enable bpf autotest 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" The BPF autotest is defined but not run automatically. Since it is short, it should be added to the autotest suite. Signed-off-by: Stephen Hemminger Acked-by: Konstantin Ananyev --- app/test/meson.build | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/test/meson.build b/app/test/meson.build index 8cf41021deb4..ba7d568bf330 100644 --- a/app/test/meson.build +++ b/app/test/meson.build @@ -193,6 +193,8 @@ test_deps = [ fast_tests = [ ['acl_autotest', true], ['atomic_autotest', false], + ['bpf_autotest', true], + ['bpf_convert_autotest', true], ['bitops_autotest', true], ['byteorder_autotest', true], ['cksum_autotest', true], -- 2.30.2