On 02/07/2021 18.31, Alexandru Elisei wrote:
kvm-unit-tests will get support for running tests automatically under
kvmtool, rename the function to make it more generic.
Signed-off-by: Alexandru Elisei <alexandru.elisei@xxxxxxx>
---
scripts/arch-run.bash | 2 +-
powerpc/run | 2 +-
s390x/run | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/scripts/arch-run.bash b/scripts/arch-run.bash
index 5997e384019b..8ceed53ed7f8 100644
--- a/scripts/arch-run.bash
+++ b/scripts/arch-run.bash
@@ -69,7 +69,7 @@ run_qemu ()
return $ret
}
-run_qemu_status ()
+run_test_status ()
{
local stdout ret
diff --git a/powerpc/run b/powerpc/run
index 597ab96ed8a8..312576006504 100755
--- a/powerpc/run
+++ b/powerpc/run
@@ -31,4 +31,4 @@ command="$(migration_cmd) $(timeout_cmd) $command"
# to fixup the fixup below by parsing the true exit code from the output.
# The second fixup is also a FIXME, because once we add chr-testdev
# support for powerpc, we won't need the second fixup.
-run_qemu_status $command "$@"
+run_test_status $command "$@"
diff --git a/s390x/run b/s390x/run
index c615caa1b772..5a4bb3bda805 100755
--- a/s390x/run
+++ b/s390x/run
@@ -28,4 +28,4 @@ command+=" -kernel"
command="$(timeout_cmd) $command"
# We return the exit code via stdout, not via the QEMU return code
-run_qemu_status $command "$@"
+run_test_status $command "$@"
Reviewed-by: Thomas Huth <thuth@xxxxxxxxxx>