diff options
author | Ilya Leoshkevich | 2022-07-26 00:37:45 +0200 |
---|---|---|
committer | Alex Bennée | 2022-07-29 10:48:01 +0200 |
commit | 0882caf4d607bcfb1efa99034f5f045f30eb43d7 (patch) | |
tree | cddc59ef1f87b6d6c6346423dddd81a02966d119 /qapi | |
parent | semihosting: Fix handling of buffer in TARGET_SYS_TMPNAM (diff) | |
download | qemu-0882caf4d607bcfb1efa99034f5f045f30eb43d7.tar.gz qemu-0882caf4d607bcfb1efa99034f5f045f30eb43d7.tar.xz qemu-0882caf4d607bcfb1efa99034f5f045f30eb43d7.zip |
qapi: Add exit-failure PanicAction
Currently QEMU exits with code 0 on both panic an shutdown. For tests
it is useful to return 1 on panic, so that it counts as a test
failure.
Introduce a new exit-failure PanicAction that makes main() return
EXIT_FAILURE. Tests can use -action panic=exit-failure option to
activate this behavior.
Signed-off-by: Ilya Leoshkevich <iii@linux.ibm.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: David Hildenbrand <david@redhat.com>
Message-Id: <20220725223746.227063-2-iii@linux.ibm.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Diffstat (limited to 'qapi')
-rw-r--r-- | qapi/run-state.json | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/qapi/run-state.json b/qapi/run-state.json index 6e2162d7b3..9273ea6516 100644 --- a/qapi/run-state.json +++ b/qapi/run-state.json @@ -364,10 +364,13 @@ # # @shutdown: Shutdown the VM and exit, according to the shutdown action # +# @exit-failure: Shutdown the VM and exit with nonzero status +# (since 7.1) +# # Since: 6.0 ## { 'enum': 'PanicAction', - 'data': [ 'pause', 'shutdown', 'none' ] } + 'data': [ 'pause', 'shutdown', 'exit-failure', 'none' ] } ## # @watchdog-set-action: |