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 1FBB241E65; Fri, 10 Mar 2023 15:26:15 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B36B540DD8; Fri, 10 Mar 2023 15:26:14 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by mails.dpdk.org (Postfix) with ESMTP id 26FC340685 for ; Fri, 10 Mar 2023 15:26:13 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1678458372; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=pSunqZYdVdgHH2it9L+d+xjWVI9NukYJRO7hUJTGVLs=; b=EnIa9DY6XJMP0/uct2HL5rg8g/f4cQslw0gC/UV8+75Zzvi+Sfj6MLV+pM8xs4JV1uUTpe qRFZ3rhZCfG6VBTM+KHAqW8Nfv+2snnDMrlboOxWr066XrU5Ni98k7OvEtbWpQpT3d9UwP uimvECvHoOkr63LwLRUmpirh/88cli0= Received: from mimecast-mx02.redhat.com (mx3-rdu2.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-403-mIJtvk1RMdibf5JHmNOPBA-1; Fri, 10 Mar 2023 09:26:11 -0500 X-MC-Unique: mIJtvk1RMdibf5JHmNOPBA-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 05AE61C294E5 for ; Fri, 10 Mar 2023 14:26:11 +0000 (UTC) Received: from dmarchan.redhat.com (unknown [10.45.224.63]) by smtp.corp.redhat.com (Postfix) with ESMTP id 8E331492B04 for ; Fri, 10 Mar 2023 14:26:10 +0000 (UTC) From: David Marchand To: dev@dpdk.org Subject: [PATCH 2/2] test: add rawdev to fast tests Date: Fri, 10 Mar 2023 15:26:04 +0100 Message-Id: <20230310142604.2409586-2-david.marchand@redhat.com> In-Reply-To: <20230310142604.2409586-1-david.marchand@redhat.com> References: <20230310142604.2409586-1-david.marchand@redhat.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 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII"; x-default=true 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 rawdev unit test can be run in the CI. Signed-off-by: David Marchand --- app/test/meson.build | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/test/meson.build b/app/test/meson.build index 5d78814878..6624b478b4 100644 --- a/app/test/meson.build +++ b/app/test/meson.build @@ -315,7 +315,6 @@ driver_test_names = [ 'cryptodev_sw_zuc_autotest', 'cryptodev_uadk_autotest', 'dmadev_autotest', - 'rawdev_autotest', ] dump_test_names = [] @@ -418,6 +417,10 @@ if dpdk_conf.has('RTE_NET_NULL') test_sources += 'test_vdev.c' fast_tests += [['vdev_autotest', true, true]] endif +if dpdk_conf.has('RTE_RAW_SKELETON') + test_deps += 'raw_skeleton' + fast_tests += [['rawdev_autotest', true, true]] +endif if dpdk_conf.has('RTE_HAS_LIBPCAP') ext_deps += pcap_dep -- 2.39.2