f714a18885
- full test suite for bbdev - test App works seamlessly on all PMDs registered with bbdev framework - a python script is provided to make our life easier - supports execution of tests by parsing Test Vector files - test Vectors can be added/deleted/modified with no need for re-compilation - various tests can be executed: (a) Throughput test (b) Offload latency test (c) Operation latency test (d) Validation test (c) Sanity checks Signed-off-by: Amr Mokhtar <amr.mokhtar@intel.com>
23 lines
563 B
Makefile
23 lines
563 B
Makefile
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2010-2014 Intel Corporation
|
|
|
|
include $(RTE_SDK)/mk/rte.vars.mk
|
|
|
|
DIRS-$(CONFIG_RTE_TEST_PMD) += test-pmd
|
|
DIRS-$(CONFIG_RTE_PROC_INFO) += proc_info
|
|
DIRS-$(CONFIG_RTE_LIBRTE_PDUMP) += pdump
|
|
|
|
ifeq ($(CONFIG_RTE_LIBRTE_BBDEV),y)
|
|
DIRS-$(CONFIG_RTE_TEST_BBDEV) += test-bbdev
|
|
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
|