mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-24 10:34:43 +03:00
When running unit tests, a log of all executed tests is generated. A script along with the "required_tests.json" will check that all required tests were effectively run, thus ensuring that no tests are silently missing. The "testlist.py" support script is also used to generate the list of required tests, and can also generate an HTML-formatted output with links to JAMA requirements wherever possible. JIRA NVGPU-1717 Change-Id: Ic361b1d0a5f003f8b24952d63e20fb496dd1e787 Signed-off-by: Nicolas Benech <nbenech@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/1983631 GVS: Gerrit_Virtual_Submit Reviewed-by: Alex Waterman <alexw@nvidia.com> Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
111 lines
3.5 KiB
Makefile
111 lines
3.5 KiB
Makefile
################################### tell Emacs this is a -*- makefile-gmake -*-
|
|
#
|
|
# Copyright (c) 2018 NVIDIA CORPORATION. All Rights Reserved.
|
|
#
|
|
# NVIDIA CORPORATION and its licensors retain all intellectual property
|
|
# and proprietary rights in and to this software, related documentation
|
|
# and any modifications thereto. Any use, reproduction, disclosure or
|
|
# distribution of this software and related documentation without an express
|
|
# license agreement from NVIDIA CORPORATION is strictly prohibited.
|
|
#
|
|
# tmake for SW Mobile component makefile
|
|
#
|
|
###############################################################################
|
|
|
|
NVGPU_UNIT_COMMON_SRCS := \
|
|
src/nvgpu.c \
|
|
src/args.c \
|
|
src/io.c \
|
|
src/module.c \
|
|
src/results.c \
|
|
src/exec.c
|
|
NVGPU_UNIT_COMMON_INCLUDES := \
|
|
include \
|
|
../drivers/gpu/nvgpu \
|
|
../drivers/gpu/nvgpu/include
|
|
|
|
|
|
ifdef NV_COMPONENT_FLAG_NVTEST_EXECUTABLE_SECTION
|
|
include $(NV_BUILD_START_COMPONENT)
|
|
|
|
NV_COMPONENT_NAME := nvgpu_unit
|
|
NV_COMPONENT_SOURCES := \
|
|
src/unit_main.c \
|
|
$(NVGPU_UNIT_COMMON_SRCS)
|
|
|
|
NV_COMPONENT_INCLUDES := \
|
|
$(NVGPU_UNIT_COMMON_INCLUDES)
|
|
|
|
NV_COMPONENT_NEEDED_INTERFACE_DIRS := ../drivers/gpu/nvgpu
|
|
|
|
ifneq ($(NV_BUILD_CONFIGURATION_OS_IS_QNX),1)
|
|
NV_COMPONENT_SYSTEM_SHARED_LIBRARIES += pthread
|
|
NV_COMPONENT_SYSTEM_SHARED_LIBRARIES += dl
|
|
NV_COMPONENT_SYSTEM_SHARED_LIBRARIES += gcov
|
|
endif
|
|
|
|
NV_COMPONENT_CFLAGS += -D__NVGPU_POSIX__
|
|
_NV_TOOLCHAIN_CFLAGS += -rdynamic
|
|
|
|
NV_UNIT_SH=unit.sh
|
|
NV_TESTLIST_PY=testlist.py
|
|
NV_REQ_TESTS_JSON=required_tests.json
|
|
NV_COMPONENT_SYSTEMIMAGE_DIR := $(NV_SYSTEMIMAGE_TEST_EXECUTABLE_DIR)/nvgpu_unit
|
|
systemimage:: $(NV_COMPONENT_SYSTEMIMAGE_DIR) $(NV_COMPONENT_SYSTEMIMAGE_DIR)/$(NV_UNIT_SH) \
|
|
$(NV_COMPONENT_SYSTEMIMAGE_DIR)/$(NV_TESTLIST_PY) \
|
|
$(NV_COMPONENT_SYSTEMIMAGE_DIR)/$(NV_REQ_TESTS_JSON)
|
|
|
|
#make the output directory
|
|
$(NV_COMPONENT_SYSTEMIMAGE_DIR) : $(NV_SYSTEMIMAGE_TEST_EXECUTABLE_DIR)
|
|
$(MKDIR_P) $@
|
|
|
|
#copy the test script
|
|
$(NV_COMPONENT_SYSTEMIMAGE_DIR)/$(NV_UNIT_SH) : $(NV_COMPONENT_DIR)/$(NV_UNIT_SH) $(NV_COMPONENT_SYSTEMIMAGE_DIR)
|
|
$(CP) $< $@
|
|
$(NV_COMPONENT_SYSTEMIMAGE_DIR)/$(NV_TESTLIST_PY) : $(NV_COMPONENT_DIR)/$(NV_TESTLIST_PY) $(NV_COMPONENT_SYSTEMIMAGE_DIR)
|
|
$(CP) $< $@
|
|
$(NV_COMPONENT_SYSTEMIMAGE_DIR)/$(NV_REQ_TESTS_JSON) : $(NV_COMPONENT_DIR)/$(NV_REQ_TESTS_JSON) $(NV_COMPONENT_SYSTEMIMAGE_DIR)
|
|
$(CP) $< $@
|
|
|
|
|
|
include $(NV_BUILD_NVTEST_EXECUTABLE)
|
|
|
|
endif
|
|
|
|
ifdef NV_COMPONENT_FLAG_SHARED_LIBRARY_SECTION
|
|
include $(NV_BUILD_START_COMPONENT)
|
|
|
|
NV_COMPONENT_NAME := nvgpu_unit-lib
|
|
NV_COMPONENT_OWN_INTERFACE_DIR := .
|
|
|
|
NV_COMPONENT_SOURCES := \
|
|
$(NVGPU_UNIT_COMMON_SRCS)
|
|
|
|
NV_COMPONENT_INCLUDES := \
|
|
$(NVGPU_UNIT_COMMON_INCLUDES)
|
|
|
|
NV_COMPONENT_NEEDED_INTERFACE_DIRS := ../drivers/gpu/nvgpu
|
|
|
|
ifneq ($(NV_BUILD_CONFIGURATION_OS_IS_QNX),1)
|
|
NV_COMPONENT_SYSTEM_SHARED_LIBRARIES += pthread
|
|
NV_COMPONENT_SYSTEM_SHARED_LIBRARIES += dl
|
|
endif
|
|
|
|
NV_COMPONENT_CFLAGS += -D__NVGPU_POSIX__
|
|
|
|
NV_COMPONENT_SYSTEMIMAGE_DIR := $(NV_SYSTEMIMAGE_TEST_EXECUTABLE_DIR)/nvgpu_unit/
|
|
systemimage:: $(NV_COMPONENT_SYSTEMIMAGE_DIR)
|
|
$(NV_COMPONENT_SYSTEMIMAGE_DIR) : $(NV_SYSTEMIMAGE_TEST_EXECUTABLE_DIR)
|
|
$(MKDIR_P) $@
|
|
NV_COMPONENT_SYSTEMIMAGE_NAME := libnvgpu-unit.so
|
|
|
|
include $(NV_BUILD_SHARED_LIBRARY)
|
|
|
|
endif
|
|
|
|
# Local Variables:
|
|
# indent-tabs-mode: t
|
|
# tab-width: 8
|
|
# End:
|
|
# vi: set tabstop=8 noexpandtab:
|