]> xenbits.xensource.com Git - people/aperard/qemu-dm.git/commitdiff
tests/tcg: fix semihosting SYS_EXIT for aarch64 in boot.S
authorAlex Bennée <alex.bennee@linaro.org>
Fri, 4 Apr 2025 11:51:12 +0000 (12:51 +0100)
committerAlex Bennée <alex.bennee@linaro.org>
Wed, 9 Apr 2025 09:35:16 +0000 (10:35 +0100)
We don't expect to hit exceptions in our testing so currently all the
vectors report an un-expected exception and then attempt to exit.
However for aarch64 we should always use the extended information
block as we do in _exit. Rather than duplicate the code on the error
handler just branch to the _exit handler with a failing status code.

Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20250404115641.258048-1-alex.bennee@linaro.org>

tests/tcg/aarch64/system/boot.S

index 4eb1b35b88dab9a90c75c2ec90ba15b03cbe704d..a5df9c173d8fc479e5528bb771508dbb6eff991e 100644 (file)
@@ -73,9 +73,8 @@ lower_a32_serror:
        mov     x0, SYS_WRITE0
        adr     x1, .error
        semihosting_call
-       mov     x0, SYS_EXIT
-       mov     x1, 1
-       semihosting_call
+       mov     x0, 1 /* EXIT_FAILURE */
+       bl      _exit
        /* never returns */
 
        .section .rodata