From eeff8bf3569857049eeaf459b380403e95a7f5c3 Mon Sep 17 00:00:00 2001 From: Alex Waterman Date: Wed, 17 Oct 2018 08:41:19 -0700 Subject: [PATCH] gpu: nvgpu: unit: Fix test type for PRAMIN unit test Fix the test type for the PRAMIN unit test from POSIX to nvgpu. This affects the order in which the tests are run. JIRA NVGPU-916 Change-Id: Ie946ea6db112437f0e7bf98a8a5d5d9e2d595283 Signed-off-by: Alex Waterman Reviewed-on: https://git-master.nvidia.com/r/1929038 Reviewed-by: Konsta Holtta Reviewed-by: svc-mobile-coverity GVS: Gerrit_Virtual_Submit Reviewed-by: mobile promotions Tested-by: mobile promotions --- userspace/units/nvgpu-pramin/nvgpu-pramin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/userspace/units/nvgpu-pramin/nvgpu-pramin.c b/userspace/units/nvgpu-pramin/nvgpu-pramin.c index 71525ad90..9121ab4b8 100644 --- a/userspace/units/nvgpu-pramin/nvgpu-pramin.c +++ b/userspace/units/nvgpu-pramin/nvgpu-pramin.c @@ -512,4 +512,4 @@ struct unit_module_test pramin_tests[] = { UNIT_TEST(nvgpu_pramin_free_test_env, free_test_env, NULL), }; -UNIT_MODULE(pramin, pramin_tests, UNIT_PRIO_POSIX_TEST); +UNIT_MODULE(pramin, pramin_tests, UNIT_PRIO_NVGPU_TEST);