qemu-arm
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[kvm-unit-tests PATCH v1 2/4] scripts/arch-run: don't use deprecated ser


From: Alex Bennée
Subject: [kvm-unit-tests PATCH v1 2/4] scripts/arch-run: don't use deprecated server/nowait options
Date: Wed, 28 Apr 2021 11:18:42 +0100

The very fact that QEMU drops the deprecation warning while running is
enough to confuse the its-migration test into failing. The boolean
options server and wait have accepted the long form options for a long
time.

Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
---
 scripts/arch-run.bash | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/scripts/arch-run.bash b/scripts/arch-run.bash
index 5997e38..70693f2 100644
--- a/scripts/arch-run.bash
+++ b/scripts/arch-run.bash
@@ -122,14 +122,14 @@ run_migration ()
        trap 'kill 0; exit 2' INT TERM
        trap 'rm -f ${migout1} ${migsock} ${qmp1} ${qmp2} ${fifo}' RETURN EXIT
 
-       eval "$@" -chardev socket,id=mon1,path=${qmp1},server,nowait \
+       eval "$@" -chardev socket,id=mon1,path=${qmp1},server=on,wait=off \
                -mon chardev=mon1,mode=control | tee ${migout1} &
 
        # We have to use cat to open the named FIFO, because named FIFO's, 
unlike
        # pipes, will block on open() until the other end is also opened, and 
that
        # totally breaks QEMU...
        mkfifo ${fifo}
-       eval "$@" -chardev socket,id=mon2,path=${qmp2},server,nowait \
+       eval "$@" -chardev socket,id=mon2,path=${qmp2},server=on,wait=off \
                -mon chardev=mon2,mode=control -incoming unix:${migsock} < 
<(cat ${fifo}) &
        incoming_pid=`jobs -l %+ | awk '{print$2}'`
 
-- 
2.20.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]