From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42048) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d7iYL-00070b-Tk for qemu-devel@nongnu.org; Mon, 08 May 2017 09:18:19 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d7iYG-0001Z9-SN for qemu-devel@nongnu.org; Mon, 08 May 2017 09:18:17 -0400 Received: from fanzine.igalia.com ([91.117.99.155]:41242) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1d7iYG-0001Yz-Ik for qemu-devel@nongnu.org; Mon, 08 May 2017 09:18:12 -0400 From: Alberto Garcia In-Reply-To: <20170418135726.28022-9-stefanha@redhat.com> References: <20170418135726.28022-1-stefanha@redhat.com> <20170418135726.28022-9-stefanha@redhat.com> Date: Mon, 08 May 2017 15:18:11 +0200 Message-ID: MIME-Version: 1.0 Content-Type: text/plain Subject: Re: [Qemu-devel] [PATCH v5 8/9] qemu-iotests: support per-format golden output files List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Stefan Hajnoczi , qemu-devel@nongnu.org Cc: Eric Blake , Kevin Wolf , Maor Lipchuk , "Daniel P. Berrange" , Nir Soffer , John Snow On Tue 18 Apr 2017 03:57:25 PM CEST, Stefan Hajnoczi wrote: > Some tests produce format-dependent output. Either the difference is > filtered out and ignored, or the test case is format-specific so we > don't need to worry about per-format output differences. > > There is a third case: the test script is the same for all image formats > and the format-dependent output is relevant. An ugly workaround is to > copy-paste the test into multiple per-format test cases. This > duplicates code and is not maintainable. > > This patch allows test cases to add per-format golden output files so a > single test case can work correctly when format-dependent output must be > checked: > > 123.out.qcow2 > 123.out.raw > 123.out.vmdk > ... > > This naming scheme is not composable with 123.out.nocache or 123.pc.out, > two other scenarios where output files are split. I don't think it > matters since few test cases need these features. > > Signed-off-by: Stefan Hajnoczi Reviewed-by: Alberto Garcia Berto