mirror of
https://github.com/qemu/qemu.git
synced 2024-12-02 08:13:34 +08:00
qemu-iotests: Fix _filter_qemu
$QEMU_PROG happens to be 'qemu' in my setup, so this sed command replaces a bit too much. Restrict it to the start of the line and to when it's followed by a colon, i.e. the form used by error messages. Signed-off-by: Kevin Wolf <kwolf@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
This commit is contained in:
parent
54f106d5fd
commit
bdda92324d
@ -155,7 +155,7 @@ _filter_qemu_io()
|
||||
# replace occurrences of QEMU_PROG with "qemu"
|
||||
_filter_qemu()
|
||||
{
|
||||
sed -e "s#$(basename $QEMU_PROG)#QEMU_PROG#g"
|
||||
sed -e "s#^$(basename $QEMU_PROG):#QEMU_PROG:#"
|
||||
}
|
||||
|
||||
# make sure this script returns success
|
||||
|
Loading…
Reference in New Issue
Block a user