gpu: nvgpu: unit: Argument to run single unit

Specify a unit to run from the command line, especially useful
as the number of units is increasing. The argument behaves as
a wildcard. All units that contain the argument in the name will
be executed.

JIRA NVGPU-1246

Change-Id: Ia650929751a0acd83fc034fbeb0fd7df8d39e48d
Signed-off-by: Nicolas Benech <nbenech@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/1967082
Reviewed-by: svc-mobile-coverity <svc-mobile-coverity@nvidia.com>
Reviewed-by: Philip Elcan <pelcan@nvidia.com>
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>
This commit is contained in:
Nicolas Benech
2018-12-06 15:04:24 -05:00
committed by mobile promotions
parent 9d92695e97
commit 48648cfc58
4 changed files with 31 additions and 4 deletions

View File

@@ -155,5 +155,13 @@ int core_parse_args(struct unit_fw *fw, int argc, char **argv)
}
}
/*
* If there is an extra argument after the command-line options, then
* it is a unit test name that need to be specifically run.
*/
if (optind < argc) {
args->unit_to_run = argv[optind];
}
return 0;
}