From patchwork Thu Sep 16 00:14:14 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stephen Hemminger X-Patchwork-Id: 98971 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 11FBDA0C41; Thu, 16 Sep 2021 02:15:22 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 5E91F410FF; Thu, 16 Sep 2021 02:14:40 +0200 (CEST) Received: from mail-pl1-f173.google.com (mail-pl1-f173.google.com [209.85.214.173]) by mails.dpdk.org (Postfix) with ESMTP id D85BB410E9 for ; Thu, 16 Sep 2021 02:14:31 +0200 (CEST) Received: by mail-pl1-f173.google.com with SMTP id f21so2691356plb.4 for ; Wed, 15 Sep 2021 17:14:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=JmYpUK+splkuju07l+nJgBXHXn15JO+cBFCf2w/FyTs=; b=T76GEolnMFoT1MIVc1e23SGss1eLLMG5nS4ViMe4me3pDM8ljV9fCYwGmnJF36tnJh BxMHrNk9FvYjR8WZcQKuO0xQhEoyMzqGqd0j+hLWk2/ucJZy6i9gj36xv3vSguFaXgL+ HYWUKTcleSADLgX/FaWsXHHoi9hpr6vi8Kf+YnHrMMVHj16B3MbUmnCKHBCB7r78Fut9 6n12s1S4bCijZpbqrjQroTM/374t0pMKIyumLVBTJvN/YNHPQKL/oWCWZyUeMC9ZqfrF CFIMCFRN9rEpO2j/QwdJHnSOHLBdtP32SiTrjHt15LGeFylQIMBLlCMeBs/fzpreLS8u l0uQ== 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=vPA26OivcwZszH9/qQCiP5qHC2hCvSUkt3uQy4RCduDCzqqGLJ9B+3WkJ4QXGvQNfs 8wQt6bTJ5Tt3x+4DVHtQfv7VT1Znv6L1dWlrsHSwIqyhAo0uxKOse2ZOLd7y+JDR2iDY djZaxcX02zwxPCCYT4mdPEltMUhrjHgLEI28c6F4VPgatgKCICk2eAI+cn/oMfHycawK 76IyiDGmLRpG0atunw+wuEbbnhqeQu4sMb6CsS3THG/alQ0SfauFbmnJdIUs86CgLYC1 A4d9TH6J1wNAtJRJgkxkx1aW8/NFZCu8aogGtbPi0giK7D94asOLMUJGIPWUUpdYduEc 1EKQ== X-Gm-Message-State: AOAM533VvtMr0NFnN2IquNbgRTlOpa55Wn6zQYeF1nnRdYEPQVgRPMxU ww08/NmDbg8EbpUi4udBzGwvRUZYlHXu8w== X-Google-Smtp-Source: ABdhPJwfi9PL7/GzQJj8BEO0jbZ6cLx+xxqDGVG3c4apFGVFM8wLV4M3agjR9TtGwcHpPRZHvtvTVg== X-Received: by 2002:a17:90a:bc8d:: with SMTP id x13mr2691822pjr.2.1631751270604; Wed, 15 Sep 2021 17:14:30 -0700 (PDT) Received: from hermes.local (204-195-33-123.wavecable.com. [204.195.33.123]) by smtp.gmail.com with ESMTPSA id 26sm1082252pgx.72.2021.09.15.17.14.29 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 15 Sep 2021 17:14:29 -0700 (PDT) From: Stephen Hemminger To: dev@dpdk.org Cc: Stephen Hemminger , Konstantin Ananyev Date: Wed, 15 Sep 2021 17:14:14 -0700 Message-Id: <20210916001416.39998-11-stephen@networkplumber.org> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20210916001416.39998-1-stephen@networkplumber.org> References: <20210903004732.109023-1-stephen@networkplumber.org> <20210916001416.39998-1-stephen@networkplumber.org> MIME-Version: 1.0 Subject: [dpdk-dev] [PATCH v9 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],