`run-qemu` checks twice for the `-daemonize` parameter.
Fixes: a3f73298f287 ("testsuite: refactor qemu options")
# Provide rng device sourcing the hosts /dev/urandom and other standard parameters
ARGS+=(-smp 2 -m "${MEMORY-1024}" -nodefaults -vga none -display none -no-reboot -watchdog-action poweroff -device "${rng_device:-virtio-rng-pci}")
-if ! [[ $* == *-daemonize* ]] && ! [[ $* == *-daemonize* ]]; then
+if ! [[ $* == *-daemonize* ]]; then
ARGS+=(-serial stdio)
fi