From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:46683) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bwYhm-0008SK-J9 for qemu-devel@nongnu.org; Tue, 18 Oct 2016 14:01:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bwYhj-0005Rk-Hh for qemu-devel@nongnu.org; Tue, 18 Oct 2016 14:01:38 -0400 Received: from out1-smtp.messagingengine.com ([66.111.4.25]:52658) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1bwYhj-0005Pi-Cp for qemu-devel@nongnu.org; Tue, 18 Oct 2016 14:01:35 -0400 Date: Tue, 18 Oct 2016 14:01:33 -0400 From: "Emilio G. Cota" Message-ID: <20161018180133.GA9586@flamenco> References: <1476214861-31658-1-git-send-email-rth@twiddle.net> <20161016223837.GB5587@flamenco> <87lgxnfkyo.fsf@linaro.org> <20161017175653.GA12910@flamenco> <87h98af4dh.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: <87h98af4dh.fsf@linaro.org> Subject: Re: [Qemu-devel] [PATCH v6 00/35] cmpxchg-based emulation of atomics List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Alex =?iso-8859-1?Q?Benn=E9e?= Cc: Richard Henderson , qemu-devel@nongnu.org On Tue, Oct 18, 2016 at 09:28:10 +0100, Alex Bennée wrote: > Emilio G. Cota writes: > > I have not tested the ARM bits. I just tested aarch64 and it works, though. > > > > I put the scripts online so that others can easily generate natively the ck_pr > > tests. If you have an architecture I don't have access to (e.g. ARM, Alpha), > > please send me the resulting tarball (the ck_pr.sh script takes care of everything) > > and I'll upload it with the others: > > > > http://braap.org/qemu/ck/ > > I built this with your script on an debian:armhf image (powered by qemu > ;-) Thanks! I uploaded it to the URL above. The arm bits indeed trip TCG up: /data/src/qemu (atomic-6 *$)$ for prog in \ $(find img/arm/ck_pr-armv7l/regressions/ck_pr/validate/ \ -executable -name 'ck_pr*' -type f); \ do \ arm-linux-user/qemu-arm $prog || break; \ done qemu-arm: /data/src/qemu/tcg/tcg.c:653: tcg_temp_free_internal: Assertion `ts->temp_allocated != 0' failed. qemu: uncaught target signal 11 (Segmentation fault) - core dumped Segmentation fault (core dumped) /data/src/qemu (atomic-6 *$)$ Thanks, Emilio