qtest/xive: Change printf to g_test_message

Change all printf() in pnv-xive2-* qtests to g_test_message()

[npiggin: split from pool qtest]
Signed-off-by: Glenn Miles <milesg@linux.vnet.ibm.com>
Signed-off-by: Michael Kowal <kowal@linux.ibm.com>
Reviewed-by: Nicholas Piggin <npiggin@gmail.com>
Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
This commit is contained in:
Glenn Miles 2025-03-11 13:36:14 +10:00 committed by Nicholas Piggin
parent 0b266ae15e
commit c4b50387b4
3 changed files with 18 additions and 17 deletions

View file

@ -178,14 +178,14 @@ void test_flush_sync_inject(QTestState *qts)
int test_nr; int test_nr;
uint8_t byte; uint8_t byte;
printf("# ============================================================\n"); g_test_message("=========================================================");
printf("# Starting cache flush/queue sync injection tests...\n"); g_test_message("Starting cache flush/queue sync injection tests...");
for (test_nr = 0; test_nr < sizeof(xive_inject_tests); for (test_nr = 0; test_nr < sizeof(xive_inject_tests);
test_nr++) { test_nr++) {
int op_type = xive_inject_tests[test_nr]; int op_type = xive_inject_tests[test_nr];
printf("# Running test %d\n", test_nr); g_test_message("Running test %d", test_nr);
/* start with status byte set to 0 */ /* start with status byte set to 0 */
clr_sync(qts, src_pir, ic_topo_id, op_type); clr_sync(qts, src_pir, ic_topo_id, op_type);

View file

@ -4,8 +4,7 @@
* *
* Copyright (c) 2024, IBM Corporation. * Copyright (c) 2024, IBM Corporation.
* *
* This work is licensed under the terms of the GNU GPL, version 2 or * SPDX-License-Identifier: GPL-2.0-or-later
* later. See the COPYING file in the top-level directory.
*/ */
#include "qemu/osdep.h" #include "qemu/osdep.h"
#include "libqtest.h" #include "libqtest.h"
@ -78,8 +77,8 @@ void test_nvpg_bar(QTestState *qts)
uint32_t count, delta; uint32_t count, delta;
uint8_t i; uint8_t i;
printf("# ============================================================\n"); g_test_message("=========================================================");
printf("# Testing NVPG BAR operations\n"); g_test_message("Testing NVPG BAR operations");
set_nvg(qts, group_target, 0); set_nvg(qts, group_target, 0);
set_nvp(qts, nvp_target, 0x04); set_nvp(qts, nvp_target, 0x04);

View file

@ -4,6 +4,7 @@
* - Test 'Pull Thread Context to Odd Thread Reporting Line' * - Test 'Pull Thread Context to Odd Thread Reporting Line'
* - Test irq to hardware group * - Test irq to hardware group
* - Test irq to hardware group going through backlog * - Test irq to hardware group going through backlog
* - Test irq to pool thread
* *
* Copyright (c) 2024, IBM Corporation. * Copyright (c) 2024, IBM Corporation.
* *
@ -220,8 +221,8 @@ static void test_hw_irq(QTestState *qts)
uint16_t reg16; uint16_t reg16;
uint8_t pq, nsr, cppr; uint8_t pq, nsr, cppr;
printf("# ============================================================\n"); g_test_message("=========================================================");
printf("# Testing irq %d to hardware thread %d\n", irq, target_pir); g_test_message("Testing irq %d to hardware thread %d", irq, target_pir);
/* irq config */ /* irq config */
set_eas(qts, irq, end_index, irq_data); set_eas(qts, irq, end_index, irq_data);
@ -278,8 +279,9 @@ static void test_pull_thread_ctx_to_odd_thread_cl(QTestState *qts)
uint32_t cl_word; uint32_t cl_word;
uint32_t word2; uint32_t word2;
printf("# ============================================================\n"); g_test_message("=========================================================");
printf("# Testing 'Pull Thread Context to Odd Thread Reporting Line'\n"); g_test_message("Testing 'Pull Thread Context to Odd Thread Reporting " \
"Line'");
/* clear odd cache line prior to pull operation */ /* clear odd cache line prior to pull operation */
memset(cl_pair, 0, sizeof(cl_pair)); memset(cl_pair, 0, sizeof(cl_pair));
@ -330,8 +332,8 @@ static void test_hw_group_irq(QTestState *qts)
uint16_t reg16; uint16_t reg16;
uint8_t pq, nsr, cppr; uint8_t pq, nsr, cppr;
printf("# ============================================================\n"); g_test_message("=========================================================");
printf("# Testing irq %d to hardware group of size 4\n", irq); g_test_message("Testing irq %d to hardware group of size 4", irq);
/* irq config */ /* irq config */
set_eas(qts, irq, end_index, irq_data); set_eas(qts, irq, end_index, irq_data);
@ -395,9 +397,9 @@ static void test_hw_group_irq_backlog(QTestState *qts)
uint16_t reg16; uint16_t reg16;
uint8_t pq, nsr, cppr, lsmfb, i; uint8_t pq, nsr, cppr, lsmfb, i;
printf("# ============================================================\n"); g_test_message("=========================================================");
printf("# Testing irq %d to hardware group of size 4 going through " \ g_test_message("Testing irq %d to hardware group of size 4 going " \
"backlog\n", "through backlog",
irq); irq);
/* /*