summaryrefslogtreecommitdiff
path: root/spm/cactus/cactus_tests
diff options
context:
space:
mode:
authorVarun Wadekar <vwadekar@nvidia.com>2021-09-27 06:01:09 -0700
committerMadhukar Pappireddy <madhukar.pappireddy@arm.com>2021-11-09 15:35:32 +0100
commit5c354823d87ebf4abd8b162b9bf8166d0f77df6f (patch)
tree7e774d8182aea86026b2089282629828e8fd7205 /spm/cactus/cactus_tests
parente854d36cebd7db39ad44b13a6be0fe9d7aa9dfeb (diff)
fix(cactus_tests/ffa): dynamically calculate array size
This patch uses the ARRAY_SIZE() macro to calculate the number of elements in the 'ffa_expected_partition_info' array instead of hard-coding to '4'. Signed-off-by: Varun Wadekar <vwadekar@nvidia.com> Change-Id: Ia0f19785b99e4b645ffa2ca61705f2329640a130
Diffstat (limited to 'spm/cactus/cactus_tests')
-rw-r--r--spm/cactus/cactus_tests/cactus_test_ffa.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/spm/cactus/cactus_tests/cactus_test_ffa.c b/spm/cactus/cactus_tests/cactus_test_ffa.c
index 2dc264e..c580ee4 100644
--- a/spm/cactus/cactus_tests/cactus_test_ffa.c
+++ b/spm/cactus/cactus_tests/cactus_test_ffa.c
@@ -121,7 +121,8 @@ static void ffa_partition_info_get_test(struct mailbox_buffers *mb)
&ffa_expected_partition_info[0], 1), true);
expect(ffa_partition_info_helper(mb, null_uuid,
- ffa_expected_partition_info, 4), true);
+ ffa_expected_partition_info,
+ ARRAY_SIZE(ffa_expected_partition_info)), true);
ffa_partition_info_wrong_test();