Following the new RegEx class. There is a need to create a dedicated test application in order to validate this class and PMD. Unlike net device this application loads data from a file. This commit introduces the new RegEx test app. The basic app flow: 1. Configure the RegEx device to use one queue, and set the rule database, using precompiled file. 2. Allocate mbufs based on the requested number of jobs, each job will i get one mbuf. 3. Enqueue as much as possible jobs. 4. Dequeue jobs. 5. if the number of dequeue jobs < requested number of jobs job to step Signed-off-by: Ori Kam <orika@mellanox.com> Signed-off-by: Yuval Avnery <yuvalav@mellanox.com>
35 lines
1.0 KiB
Makefile
35 lines
1.0 KiB
Makefile
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2010-2014 Intel Corporation
|
|
|
|
include $(RTE_SDK)/mk/rte.vars.mk
|
|
|
|
DIRS-$(CONFIG_RTE_APP_TEST) += test
|
|
DIRS-$(CONFIG_RTE_TEST_PMD) += test-pmd
|
|
DIRS-$(CONFIG_RTE_PROC_INFO) += proc-info
|
|
DIRS-$(CONFIG_RTE_LIBRTE_PDUMP) += pdump
|
|
DIRS-$(CONFIG_RTE_LIBRTE_ACL) += test-acl
|
|
DIRS-$(CONFIG_RTE_LIBRTE_CMDLINE) += test-cmdline
|
|
DIRS-$(CONFIG_RTE_LIBRTE_FIB) += test-fib
|
|
DIRS-$(CONFIG_RTE_TEST_FLOW_PERF) += test-flow-perf
|
|
DIRS-$(CONFIG_RTE_LIBRTE_PIPELINE) += test-pipeline
|
|
DIRS-$(CONFIG_RTE_LIBRTE_IPSEC) += test-sad
|
|
DIRS-$(CONFIG_RTE_LIBRTE_REGEXDEV) += test-regex
|
|
|
|
ifeq ($(CONFIG_RTE_LIBRTE_BBDEV),y)
|
|
DIRS-$(CONFIG_RTE_TEST_BBDEV) += test-bbdev
|
|
endif
|
|
|
|
ifeq ($(CONFIG_RTE_LIBRTE_COMPRESSDEV),y)
|
|
DIRS-$(CONFIG_RTE_APP_COMPRESS_PERF) += test-compress-perf
|
|
endif
|
|
|
|
ifeq ($(CONFIG_RTE_LIBRTE_CRYPTODEV),y)
|
|
DIRS-$(CONFIG_RTE_APP_CRYPTO_PERF) += test-crypto-perf
|
|
endif
|
|
|
|
ifeq ($(CONFIG_RTE_LIBRTE_EVENTDEV),y)
|
|
DIRS-$(CONFIG_RTE_APP_EVENTDEV) += test-eventdev
|
|
endif
|
|
|
|
include $(RTE_SDK)/mk/rte.subdir.mk
|