Use a single fairly generic string as the "all done" message to look for, which avoids the need to patch qemu-smoke-riscv64.sh each time a new feature is added.
Signed-off-by: Andrew Cooper <[email protected]> --- CC: Oleksii Kurochko <[email protected]> CC: Bob Eshleman <[email protected]> CC: Alistair Francis <[email protected]> CC: Connor Davis <[email protected]> CC: Anthony PERARD <[email protected]> CC: Stefano Stabellini <[email protected]> CC: Michal Orzel <[email protected]> CC: Doug Goldstein <[email protected]> I considered "All set up and nowhere to go" but it's probably a little niche. --- automation/scripts/qemu-smoke-riscv64.sh | 2 +- xen/arch/riscv/setup.c | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/automation/scripts/qemu-smoke-riscv64.sh b/automation/scripts/qemu-smoke-riscv64.sh index e0f06360bc43..4008191302f9 100755 --- a/automation/scripts/qemu-smoke-riscv64.sh +++ b/automation/scripts/qemu-smoke-riscv64.sh @@ -16,5 +16,5 @@ qemu-system-riscv64 \ |& tee smoke.serial set -e -(grep -q "Hello from C env" smoke.serial) || exit 1 +(grep -q "All set up" smoke.serial) || exit 1 exit 0 diff --git a/xen/arch/riscv/setup.c b/xen/arch/riscv/setup.c index d09ffe1454a4..1c87899e8e90 100644 --- a/xen/arch/riscv/setup.c +++ b/xen/arch/riscv/setup.c @@ -11,6 +11,7 @@ void __init noreturn start_xen(void) { early_printk("Hello from C env\n"); + early_printk("All set up\n"); for ( ;; ) asm volatile ("wfi"); -- 2.30.2
