Looks good to me.

Thanks.

Reviewed-by: Oleksii Kurochko <oleksii.kuroc...@gmail.com>

~ Oleksii

On Fri, 2023-02-24 at 15:37 +0000, Andrew Cooper wrote:
> 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 <andrew.coop...@citrix.com>
> ---
> CC: Oleksii Kurochko <oleksii.kuroc...@gmail.com>
> CC: Bob Eshleman <bobbyeshle...@gmail.com>
> CC: Alistair Francis <alistair.fran...@wdc.com>
> CC: Connor Davis <connojda...@gmail.com>
> CC: Anthony PERARD <anthony.per...@citrix.com>
> CC: Stefano Stabellini <sstabell...@kernel.org>
> CC: Michal Orzel <michal.or...@amd.com>
> CC: Doug Goldstein <car...@cardoe.com>
> 
> 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");
>  


Reply via email to