gpu: nvgpu: SWUTS: clean up test types

Apply the following changes to test types:
* "Init" --> "Other (setup)"
* "Coverage" --> Removed since it's implied for all tests
* "Feature based" --> "Feature"
* "Boundary Value analysis" and "Boundary values based" --> "Boundary values"
* "Error guessing based" --> "Error guessing"

JIRA NVGPU-3510

Change-Id: I3a9c0c59e6ad806f3479caa5e9a62f4d89f76923
Signed-off-by: Nicolas Benech <nbenech@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/2265670
Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com>
Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
This commit is contained in:
Nicolas Benech
2019-12-19 11:14:53 -05:00
committed by Alex Waterman
parent 7dd618980a
commit b682091b13
79 changed files with 376 additions and 376 deletions

View File

@@ -38,7 +38,7 @@ struct unit_module;
* Description: This test must be run once and be the first one as it
* initializes the MM subsystem.
*
* Test Type: Feature based, Init
* Test Type: Feature, Other (setup)
*
* Targets: nvgpu_vm_init
*
@@ -66,7 +66,7 @@ int test_mm_dma_init(struct unit_module *m, struct gk20a *g, void *__args);
* Description: Test to target nvgpu_dma_alloc_* functions, testing automatic or
* forced allocations in SYSMEM or VIDMEM.
*
* Test Type: Feature based
* Test Type: Feature
*
* Targets: nvgpu_dma_alloc_flags_sys, nvgpu_dma_free, nvgpu_dma_alloc_flags_vid
*
@@ -93,7 +93,7 @@ int test_mm_dma_alloc(struct unit_module *m, struct gk20a *g, void *args);
* Description: Test to target nvgpu_dma_alloc_flags_* functions, testing
* several possible flags and SYSMEM/VIDMEM.
*
* Test Type: Feature based
* Test Type: Feature
*
* Targets: nvgpu_dma_alloc_flags_sys, nvgpu_dma_free, nvgpu_dma_alloc_flags_vid
*
@@ -121,7 +121,7 @@ int test_mm_dma_alloc_flags(struct unit_module *m, struct gk20a *g, void *args);
* Description: Test to target nvgpu_dma_alloc_map_* functions, testing
* allocations and GMMU mappings in SYSMEM or VIDMEM.
*
* Test Type: Feature based
* Test Type: Feature
*
* Targets: nvgpu_dma_alloc_map, nvgpu_dma_unmap_free, nvgpu_dma_alloc_map_sys,
* nvgpu_dma_alloc_map_vid
@@ -149,7 +149,7 @@ int test_mm_dma_alloc_map(struct unit_module *m, struct gk20a *g, void *args);
*
* Description: Test error handling branches in nvgpu_dma_alloc_map
*
* Test Type: Feature based
* Test Type: Feature
*
* Targets: nvgpu_dma_alloc_map, nvgpu_dma_unmap_free
*