diff --git a/test_pool/pcie/operating_system/test_p050.c b/test_pool/pcie/operating_system/test_p050.c index 05e60bad..3bba1348 100644 --- a/test_pool/pcie/operating_system/test_p050.c +++ b/test_pool/pcie/operating_system/test_p050.c @@ -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 { diff --git a/test_pool/pcie/operating_system/test_p056.c b/test_pool/pcie/operating_system/test_p056.c index e6372db3..0930f121 100644 --- a/test_pool/pcie/operating_system/test_p056.c +++ b/test_pool/pcie/operating_system/test_p056.c @@ -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; }