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
454 B
Makefile
23 lines
454 B
Makefile
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2017 Intel Corporation
|
|
|
|
include $(RTE_SDK)/mk/rte.vars.mk
|
|
|
|
#
|
|
# library name
|
|
#
|
|
APP = testbbdev
|
|
|
|
CFLAGS += -O3
|
|
CFLAGS += $(WERROR_FLAGS)
|
|
|
|
#
|
|
# all sources are stored in SRCS-y
|
|
#
|
|
SRCS-$(CONFIG_RTE_TEST_BBDEV) += main.c
|
|
SRCS-$(CONFIG_RTE_TEST_BBDEV) += test_bbdev.c
|
|
SRCS-$(CONFIG_RTE_TEST_BBDEV) += test_bbdev_perf.c
|
|
SRCS-$(CONFIG_RTE_TEST_BBDEV) += test_bbdev_vector.c
|
|
|
|
include $(RTE_SDK)/mk/rte.app.mk
|