Quite a few changes from the vbdev compress unit tests mainly due to plumbing and structural changes from the code under test now being an accel_fw module instead of a bdev module. Coverage of critical functions matches what it was for the common code. Signed-off-by: paul luse <paul.e.luse@intel.com> Change-Id: Ia40c7a0ed72a427e71c00607d93e215e0265fcb1 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/16076 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com> Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com>
20 lines
479 B
Makefile
20 lines
479 B
Makefile
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright (C) 2015 Intel Corporation.
|
|
# Copyright (c) 2022, NVIDIA CORPORATION & AFFILIATES.
|
|
# All rights reserved.
|
|
#
|
|
|
|
SPDK_ROOT_DIR := $(abspath $(CURDIR)/../../../..)
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.common.mk
|
|
|
|
DIRS-y = accel.c
|
|
DIRS-$(CONFIG_CRYPTO) += dpdk_cryptodev.c
|
|
DIRS-$(CONFIG_DPDK_COMPRESSDEV) += dpdk_compressdev.c
|
|
|
|
.PHONY: all clean $(DIRS-y)
|
|
|
|
all: $(DIRS-y)
|
|
clean: $(DIRS-y)
|
|
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.subdirs.mk
|