From patchwork Thu Sep 28 15:14:26 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bruce Richardson X-Patchwork-Id: 208 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 F072642662; Thu, 28 Sep 2023 17:14:37 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id C94A340273; Thu, 28 Sep 2023 17:14:37 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [198.175.65.9]) by mails.dpdk.org (Postfix) with ESMTP id 265FA4021E for ; Thu, 28 Sep 2023 17:14:36 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1695914077; x=1727450077; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=ND9Fd+KURA82aDpK7BUWjk5BfN5nQz7aZQP2bUihy5c=; b=hPjw4qeiZCPK4VJiwGttfqujGi39AB5jP7esARWLc8nfg/YDUwkfH+mb 7Bw5ugA7zuT76z2Lo2eD3PzFDlAHM6y/bJvK6yskLeAqLUPcpRGip1Zsi vkKxSVSptlCmvsWiyZlclJiTGSjYjnGd3lzhMZs/zpUuNhhyuhJcYW2ts GajymyAVStR1MvxTlgEzXSEggPGFDmGnzZFUdBFCw9RVNFLl/JujHTROF OCG2Zlj5E3AJwPH+yGEXME50J4pL38W87uWqynclp6+SuvfRzcHo7Qwh+ uEI81cxQrgxLVF6MGzAd21l/H1JPXHzzSbtsHXu0cCkmitLHT1meAauBT g==; X-IronPort-AV: E=McAfee;i="6600,9927,10847"; a="698214" X-IronPort-AV: E=Sophos;i="6.03,184,1694761200"; d="scan'208";a="698214" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by orvoesa101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 Sep 2023 08:14:36 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10847"; a="778939783" X-IronPort-AV: E=Sophos;i="6.03,184,1694761200"; d="scan'208";a="778939783" Received: from silpixa00401385.ir.intel.com ([10.237.214.155]) by orsmga008.jf.intel.com with ESMTP; 28 Sep 2023 08:14:33 -0700 From: Bruce Richardson To: dev@dpdk.org Cc: Bruce Richardson Subject: [PATCH 0/2] Add eventdev tests to test suites Date: Thu, 28 Sep 2023 16:14:26 +0100 Message-Id: <20230928151428.895642-1-bruce.richardson@intel.com> X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 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 The eventdev library includes a selftest API which can be used by drivers for testing. Add the relevant automated self-test commands into meson test suites as appropriate. Bruce Richardson (2): event/sw: add self tests to fast tests event/*: add driver selftests to driver-tests suite app/test/test_eventdev.c | 10 +++++----- drivers/event/sw/sw_evdev_selftest.c | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) Acked-by: David Marchand