From 10094b7091ad4ad0bd80e09da1c98155dece2cfe Mon Sep 17 00:00:00 2001 From: ajesh Date: Mon, 23 Sep 2019 11:12:58 +0530 Subject: [PATCH] gpu: nvgpu: update SWUT with cond and timers Update the SWUT sources and header file to include cond and timers unit. Jira NVGPU-3973 Jira NVGPU-3944 Change-Id: I480c6f7558a7e8d13fccba5ba79d65816527c904 Signed-off-by: ajesh Reviewed-on: https://git-master.nvidia.com/r/2203497 Reviewed-by: mobile promotions Tested-by: mobile promotions --- userspace/SWUTS.h | 2 ++ userspace/SWUTS.sources | 2 ++ userspace/units/posix/cond/posix-cond.h | 4 ++-- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/userspace/SWUTS.h b/userspace/SWUTS.h index 95ad01f1f..68112a54b 100644 --- a/userspace/SWUTS.h +++ b/userspace/SWUTS.h @@ -43,9 +43,11 @@ * - @ref SWUTS-mm-mm * - @ref SWUTS-mm-vm * - @ref SWUTS-fuse + * - @ref SWUTS-posix-cond * - @ref SWUTS-posix-fault-injection * - @ref SWUTS-posix-sizes * - @ref SWUTS-posix-thread + * - @ref SWUTS-posix-timers * - @ref SWUTS-sdl * */ diff --git a/userspace/SWUTS.sources b/userspace/SWUTS.sources index 93c51940c..35c817de5 100644 --- a/userspace/SWUTS.sources +++ b/userspace/SWUTS.sources @@ -14,8 +14,10 @@ INPUT += ../../../userspace/units/mm/nvgpu_mem/nvgpu_mem.h INPUT += ../../../userspace/units/mm/nvgpu_sgt/nvgpu_sgt.h INPUT += ../../../userspace/units/mm/mm/mm.h INPUT += ../../../userspace/units/mm/vm/vm.h +INPUT += ../../../userspace/units/posix/cond/posix-cond.h INPUT += ../../../userspace/units/posix/fault-injection/posix-fault-injection.h INPUT += ../../../userspace/units/posix/fault-injection/posix-fault-injection-kmem.h INPUT += ../../../userspace/units/posix/fault-injection/posix-fault-injection-dma-alloc.h INPUT += ../../../userspace/units/posix/sizes/posix-sizes.h INPUT += ../../../userspace/units/posix/thread/posix-thread.h +INPUT += ../../../userspace/units/posix/timers/posix-timers.h diff --git a/userspace/units/posix/cond/posix-cond.h b/userspace/units/posix/cond/posix-cond.h index f89a9ec1a..81880c8bc 100644 --- a/userspace/units/posix/cond/posix-cond.h +++ b/userspace/units/posix/cond/posix-cond.h @@ -21,10 +21,10 @@ */ /** - * @addtogroup SWUTS-posix.cond + * @addtogroup SWUTS-posix-cond * @{ * - * Software Unit Test Specification for posix.cond + * Software Unit Test Specification for posix-cond */ #ifndef __UNIT_POSIX_COND_H__