Skip to content

Commit

Permalink
Fix for issue ARM-software/bsa-acs#208 (#407)
Browse files Browse the repository at this point in the history
- Certain API's are platform dependent
- Adding the info as print msg for better understanding
  to customers

Signed-off-by: Sujana M <[email protected]>
  • Loading branch information
Sujana-M authored Oct 10, 2023
1 parent 9ae1cc7 commit 131a29f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions test_pool/pcie/operating_system/test_p050.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,10 @@ payload(void)
if (status == NOT_IMPLEMENTED) {
val_print (AVS_PRINT_WARN,
"\n pal_pcie_get_legacy_irq_map unimplemented. Skipping test", 0);
val_print(AVS_PRINT_WARN,
"\n The API is platform specific and to be populated", 0);
val_print(AVS_PRINT_WARN,
"\n by partners with system legacy irq map", 0);
val_set_status(pe_index, RESULT_SKIP(g_sbsa_level, TEST_NUM, 02));
}
else {
Expand Down
4 changes: 3 additions & 1 deletion test_pool/pcie/operating_system/test_p056.c
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@ payload(void)

/* Check If PCIe Hierarchy supports P2P */
if (val_pcie_p2p_support() == NOT_IMPLEMENTED) {
val_print(AVS_PRINT_DEBUG, "\n pal_pcie_p2p_support API is unimplemented ", 0);
val_print(AVS_PRINT_DEBUG, "\n The test is applicable only if the system supports", 0);
val_print(AVS_PRINT_DEBUG, "\n P2P traffic. If the system supports P2P, pass the", 0);
val_print(AVS_PRINT_DEBUG, "\n command line option '-p2p' while running the binary", 0);
val_set_status(pe_index, RESULT_SKIP(g_sbsa_level, TEST_NUM, 01));
return;
}
Expand Down

0 comments on commit 131a29f

Please sign in to comment.