Skip to content

Commit

Permalink
Test 863 skips without explanation (ARM-software#403)
Browse files Browse the repository at this point in the history
- Added the skip reason for bitfield checks in VAL

Signed-off-by: Sujana M <[email protected]>
  • Loading branch information
rajatgoyal47 authored Nov 27, 2024
1 parent 6150963 commit 436ad21
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/arm_bsa_testcase_checklist.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
###########################
BSA ACS Testcase checklist
###########################

The below table provides the following details

#. BSA rules covered by a test.
Expand Down
4 changes: 3 additions & 1 deletion val/common/src/acs_pcie.c
Original file line number Diff line number Diff line change
Expand Up @@ -1413,8 +1413,10 @@ val_pcie_register_bitfields_check(uint64_t *bf_info_table, uint32_t num_bitfield
/* Return register check status */
if (num_pass > 0 || num_fails > 0)
return num_fails;
else
else {
val_print(ACS_PRINT_ERR, "\n No PCIe device of type %d present", dp_type);
return ACS_STATUS_SKIP;
}
}

/**
Expand Down

0 comments on commit 436ad21

Please sign in to comment.