Re: [Qemu-devel] [PATCH v2 8/9] qemu-iotests: Fix stderr handling in common.qemu

2014-11-13 Thread Stefan Hajnoczi
On Fri, Nov 07, 2014 at 08:39:24PM +0100, Kevin Wolf wrote: > The original intention was to pipe stderr of qemu into $fifo_out. > However, the redirections were specified in the wrong order for this. > This patch fixes it. > > Now qemu's output on stderr can be retrieved with _send_qemu_cmd, which

Re: [Qemu-devel] [PATCH v2 8/9] qemu-iotests: Fix stderr handling in common.qemu

2014-11-10 Thread Eric Blake
On 11/07/2014 12:39 PM, Kevin Wolf wrote: > The original intention was to pipe stderr of qemu into $fifo_out. > However, the redirections were specified in the wrong order for this. > This patch fixes it. > > Now qemu's output on stderr can be retrieved with _send_qemu_cmd, which > applies several

Re: [Qemu-devel] [PATCH v2 8/9] qemu-iotests: Fix stderr handling in common.qemu

2014-11-10 Thread Max Reitz
On 2014-11-07 at 20:39, Kevin Wolf wrote: The original intention was to pipe stderr of qemu into $fifo_out. However, the redirections were specified in the wrong order for this. This patch fixes it. Now qemu's output on stderr can be retrieved with _send_qemu_cmd, which applies several useful fi

[Qemu-devel] [PATCH v2 8/9] qemu-iotests: Fix stderr handling in common.qemu

2014-11-07 Thread Kevin Wolf
The original intention was to pipe stderr of qemu into $fifo_out. However, the redirections were specified in the wrong order for this. This patch fixes it. Now qemu's output on stderr can be retrieved with _send_qemu_cmd, which applies several useful filters on the output that were missing before