userspace: disable unit test for gr_config err injection

This patch disables test_gr_config_error_injection

JIRA NVGPU-9897

Change-Id: I771598687f4a1efc9a9a4229dbfd5524c5b6732f
Signed-off-by: Rajesh Devaraj <rdevaraj@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/c/linux-nvgpu/+/2900702
Reviewed-by: svc-mobile-coverity <svc-mobile-coverity@nvidia.com>
Reviewed-by: svc-mobile-misra <svc-mobile-misra@nvidia.com>
Reviewed-by: V M S Seeta Rama Raju Mudundi <srajum@nvidia.com>
Reviewed-by: Ankur Kishore <ankkishore@nvidia.com>
GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com>
This commit is contained in:
Rajesh Devaraj
2023-05-09 07:24:32 +00:00
committed by mobile promotions
parent ce22f1efb1
commit 36fcd45ca4
2 changed files with 3 additions and 3 deletions

View File

@@ -602,7 +602,7 @@ test_get_poll_timeout.get_poll_timeout=0
[nvgpu_gr_config]
test_gr_config_count.config_check_init=0
test_gr_config_deinit.config_deinit=0
test_gr_config_error_injection.config_error_injection=0
test_gr_config_error_injection.config_error_injection=2
test_gr_config_init.config_init=0
test_gr_config_set_get.config_check_set_get=0
test_gr_init_setup.gr_init_setup=0

View File

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2019-2021, NVIDIA CORPORATION. All rights reserved.
* Copyright (c) 2019-2023, NVIDIA CORPORATION. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
@@ -584,7 +584,7 @@ struct unit_module_test nvgpu_gr_config_tests[] = {
UNIT_TEST(config_check_init, test_gr_config_count, NULL, 0),
UNIT_TEST(config_check_set_get, test_gr_config_set_get, NULL, 0),
UNIT_TEST(config_error_injection,
test_gr_config_error_injection, NULL, 0),
test_gr_config_error_injection, NULL, 2),
UNIT_TEST(config_deinit, test_gr_config_deinit, NULL, 0),
UNIT_TEST(gr_remove_setup, test_gr_remove_setup, NULL, 0),
};