From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:44916) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z7QlB-0003IZ-Qv for qemu-devel@nongnu.org; Tue, 23 Jun 2015 12:09:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Z7Ql8-0007em-Hs for qemu-devel@nongnu.org; Tue, 23 Jun 2015 12:09:17 -0400 From: Alberto Garcia In-Reply-To: <20150623153632.GH31481@stefanha-thinkpad.redhat.com> References: <20150623153632.GH31481@stefanha-thinkpad.redhat.com> Date: Tue, 23 Jun 2015 18:09:08 +0200 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: Re: [Qemu-devel] [PATCH v8 00/11] Support streaming to an intermediate layer List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Stefan Hajnoczi Cc: qemu-devel@nongnu.org, qemu-block@nongnu.org On Tue 23 Jun 2015 05:36:32 PM CEST, Stefan Hajnoczi wrote: > Did you try qemu-iotests? I'm still getting: > > 030 11s ... [failed, exit status 1] - output mismatch (see > 030.out.bad) Yes, it works fine here. > +Traceback (most recent call last): > + File "030", line 202, in test_stream_parallel > + self.assert_qmp(result, 'return', {}) This creates several streaming operations in parallel. That particular line just checks the return value of each block-stream command. > + File "/home/stefanha/qemu/tests/qemu-iotests/iotests.py", line 286, in assert_qmp > + result = self.dictpath(d, path) > + File "/home/stefanha/qemu/tests/qemu-iotests/iotests.py", line 265, in dictpath > + self.fail('failed path traversal for "%s" in "%s"' % (path, str(d))) > +AssertionError: failed path traversal for "return" in "None" > + > ---------------------------------------------------------------------- > Ran 17 tests It seems that self.vm.qmp('block-stream', ...) is returning None in your case. Is that the only test that is failing? Berto