From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52203) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aRNS3-0004bB-MO for qemu-devel@nongnu.org; Thu, 04 Feb 2016 12:12:16 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aRNS1-0003PN-Sw for qemu-devel@nongnu.org; Thu, 04 Feb 2016 12:12:15 -0500 Received: from mail-wm0-x235.google.com ([2a00:1450:400c:c09::235]:37589) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aRNS1-0003OU-Mj for qemu-devel@nongnu.org; Thu, 04 Feb 2016 12:12:13 -0500 Received: by mail-wm0-x235.google.com with SMTP id g62so14357163wme.0 for ; Thu, 04 Feb 2016 09:12:13 -0800 (PST) From: =?UTF-8?q?Alex=20Benn=C3=A9e?= Date: Thu, 4 Feb 2016 17:11:57 +0000 Message-Id: <1454605920-12791-4-git-send-email-alex.bennee@linaro.org> In-Reply-To: <1454605920-12791-1-git-send-email-alex.bennee@linaro.org> References: <1454605920-12791-1-git-send-email-alex.bennee@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PULL 3/6] .travis.yml: enable each of the co-routine backends List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: peter.maydell@linaro.org Cc: =?UTF-8?q?Alex=20Benn=C3=A9e?= , qemu-devel@nongnu.org We disable "make check" for the gthread backend as it is broken. Signed-off-by: Alex Bennée Reviewed-by: David Gibson Tested-by: David Gibson --- pr: added r-b, t-b tags --- .travis.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 16be23f..021eec7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -94,6 +94,10 @@ matrix: - env: TARGETS=i386-softmmu,x86_64-softmmu EXTRA_CONFIG="--enable-sparse" compiler: gcc + # Modules + - env: TARGETS=i386-softmmu,x86_64-softmmu + EXTRA_CONFIG="--enable-modules" + compiler: gcc # All the trace backends (apart from dtrace) - env: TARGETS=i386-softmmu,x86_64-softmmu EXTRA_CONFIG="--enable-trace-backends=stderr" @@ -111,6 +115,15 @@ matrix: EXTRA_CONFIG="--enable-trace-backends=ust" TEST_CMD="" compiler: gcc + # All the co-routine backends (apart from windows) + # We currently disable "make check" - env: TARGETS=i386-softmmu,x86_64-softmmu - EXTRA_CONFIG="--enable-modules" + EXTRA_CONFIG="--with-coroutine=gthread" + TEST_CMD="" + compiler: gcc + - env: TARGETS=i386-softmmu,x86_64-softmmu + EXTRA_CONFIG="--with-coroutine=ucontext" + compiler: gcc + - env: TARGETS=i386-softmmu,x86_64-softmmu + EXTRA_CONFIG="--with-coroutine=sigaltstack" compiler: gcc -- 2.7.0