userspace: skip "test_branches.branches" unit test

- "test_branches.branches" unit test is failing for vectorcast build
  on ga10b, so skipping this.
  
JIRA NVGPU-9909

Change-Id: Ie713f1b92e29af63c23ba597cf2c16945337b780
Signed-off-by: srajum <srajum@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/c/linux-nvgpu/+/2897716
Reviewed-by: svc-mobile-coverity <svc-mobile-coverity@nvidia.com>
Reviewed-by: svcacv <svcacv@nvidia.com>
Reviewed-by: Prateek Sethi <prsethi@nvidia.com>
Reviewed-by: Vaibhav Kachore <vkachore@nvidia.com>
GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com>
This commit is contained in:
srajum
2023-05-03 13:23:13 +05:30
committed by mobile promotions
parent be7b4aac61
commit 1de86155d8
2 changed files with 5 additions and 5 deletions

View File

@@ -1075,9 +1075,9 @@ test_map_buffer_security.map_buffer_security=0
test_map_buffer_security_error_cases.map_buffer_security_error_cases=0 test_map_buffer_security_error_cases.map_buffer_security_error_cases=0
[worker] [worker]
test_branches.branches=0 test_branches.branches=2
test_deinit.deinit=0 test_deinit.deinit=0
test_enqueue.enqueue=1 test_enqueue.enqueue=2
test_init.init=0 test_init.init=0
[nvgpu_nvs] [nvgpu_nvs]

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2019-2020, 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 * Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"), * copy of this software and associated documentation files (the "Software"),
@@ -346,8 +346,8 @@ int test_deinit(struct unit_module *m, struct gk20a *g, void *args)
struct unit_module_test worker_tests[] = { struct unit_module_test worker_tests[] = {
UNIT_TEST(init, test_init, NULL, 0), UNIT_TEST(init, test_init, NULL, 0),
UNIT_TEST(enqueue, test_enqueue, NULL, 1), UNIT_TEST(enqueue, test_enqueue, NULL, 2),
UNIT_TEST(branches, test_branches, NULL, 0), UNIT_TEST(branches, test_branches, NULL, 2),
UNIT_TEST(deinit, test_deinit, NULL, 0), UNIT_TEST(deinit, test_deinit, NULL, 0),
}; };