Re: [Qemu-devel] [PATCH v2] qmp: fix __accept() in qmp.py

2012-10-16 Thread Luiz Capitulino
On Mon, 15 Oct 2012 16:58:02 -0400 Jeff Cody wrote: > In QEMUMonitorProtocol, commit e9d17b6 removed the __sockfile creation > from __negotiate_capabilities(), which breaks _accept(). This causes > failures in qemu-io python based tests (i.e. tests 030 and 040). > > This patch creates the sockf

Re: [Qemu-devel] [PATCH v2] qmp: fix __accept() in qmp.py

2012-10-16 Thread Stefan Hajnoczi
On Mon, Oct 15, 2012 at 04:58:02PM -0400, Jeff Cody wrote: > In QEMUMonitorProtocol, commit e9d17b6 removed the __sockfile creation > from __negotiate_capabilities(), which breaks _accept(). This causes > failures in qemu-io python based tests (i.e. tests 030 and 040). > > This patch creates the

Re: [Qemu-devel] [PATCH v2] qmp: fix __accept() in qmp.py

2012-10-16 Thread Kevin Wolf
Am 15.10.2012 22:58, schrieb Jeff Cody: > In QEMUMonitorProtocol, commit e9d17b6 removed the __sockfile creation > from __negotiate_capabilities(), which breaks _accept(). This causes > failures in qemu-io python based tests (i.e. tests 030 and 040). > > This patch creates the sockfile in __accep

[Qemu-devel] [PATCH v2] qmp: fix __accept() in qmp.py

2012-10-15 Thread Jeff Cody
In QEMUMonitorProtocol, commit e9d17b6 removed the __sockfile creation from __negotiate_capabilities(), which breaks _accept(). This causes failures in qemu-io python based tests (i.e. tests 030 and 040). This patch creates the sockfile in __accept() as well. Signed-off-by: Jeff Cody --- QMP/q