From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:39706) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gkYhS-0001AG-DO for qemu-devel@nongnu.org; Fri, 18 Jan 2019 13:17:03 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gkYhQ-00070Z-EI for qemu-devel@nongnu.org; Fri, 18 Jan 2019 13:17:02 -0500 Received: from out5-smtp.messagingengine.com ([66.111.4.29]:52007) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gkYhO-0006wT-GL for qemu-devel@nongnu.org; Fri, 18 Jan 2019 13:17:00 -0500 Date: Fri, 18 Jan 2019 13:16:51 -0500 From: "Emilio G. Cota" Message-ID: <20190118181651.GA4194@flamenco> References: <20190117132703.17790-1-alex.bennee@linaro.org> <20190117183002.GA21582@flamenco> <871s5byriy.fsf@linaro.org> <87won1yk7y.fsf@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <87won1yk7y.fsf@linaro.org> Subject: Re: [Qemu-devel] [PULL 0/7] check-softfloat, fp-bench and clang compile fixes List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Alex =?iso-8859-1?Q?Benn=E9e?= Cc: Philippe =?iso-8859-1?Q?Mathieu-Daud=E9?= , Peter Maydell , QEMU Developers On Fri, Jan 18, 2019 at 17:00:17 +0000, Alex Bennée wrote: > Philippe Mathieu-Daudé writes: > > Can you modify the Makefile.include to use: > > "fp-test ... 2>int-to-float.err || {cat int-to-float.err && exit 1;}" > > Well it's in the test-softfloat macro but sure... Actually, can we do &> instead of 2> ? The errors coming from berkeley-testfloat are printed to stdout, so we should get those too. (We could fix testfloat to print to stderr, but I'd rather only make strictly necessary changes to berkeley-testfloat.) Thanks, E.