Demi Marie Obenour writes: > QEMU allows commas in option values to be escaped by doubling them. > Therefore, doubled commas should be preserved by scripts/run-qemu.sh. > > Signed-off-by: Demi Marie Obenour > --- > scripts/run-qemu.sh | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) This makes all the tests fail: qemu-system-aarch64: -machine ,virtualization=on,accel=tcg: Invalid parameter '' > diff --git a/scripts/run-qemu.sh b/scripts/run-qemu.sh > index ab324d8fda0810516cb2180d1372bbeb546f52bc..14c58729dfceb3a0d2566fcfe076d6c10433419f 100755 > --- a/scripts/run-qemu.sh > +++ b/scripts/run-qemu.sh > @@ -64,7 +64,7 @@ while [ "$i" -lt "$#" ]; do > ;; > esac > > - arg="$arg${arg:+,}$opt" > + arg="$arg,$opt" > done > unset IFS > > > -- > 2.51.2