The test now can not cover the case where SR-based RAS node is the first node, and MMIO-based RAS noe is the second node. RAS_03 test only iterates up to (num_node - 1), so if the SR-based node is first node, the second node may never be evaluated.
We may need to change the line https://github.com/ARM-software/sysarch-acs/blob/main/test_pool/ras/ras003.c#L57
and
|
for (sec_node = node_index + 1; sec_node < num_node; sec_node++) { |
to remove the asumption that MMIO-based RAS node is always ahead SR-based RAS node.
The test now can not cover the case where SR-based RAS node is the first node, and MMIO-based RAS noe is the second node. RAS_03 test only iterates up to (num_node - 1), so if the SR-based node is first node, the second node may never be evaluated.
We may need to change the line https://github.com/ARM-software/sysarch-acs/blob/main/test_pool/ras/ras003.c#L57
and
sysarch-acs/test_pool/ras/ras003.c
Line 77 in f701455