From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:41929) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bAgk8-0003Lx-Sh for qemu-devel@nongnu.org; Wed, 08 Jun 2016 12:54:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bAgk2-0002Zg-Fs for qemu-devel@nongnu.org; Wed, 08 Jun 2016 12:54:11 -0400 Received: from mail-wm0-x231.google.com ([2a00:1450:400c:c09::231]:35062) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bAgk2-0002Za-8t for qemu-devel@nongnu.org; Wed, 08 Jun 2016 12:54:06 -0400 Received: by mail-wm0-x231.google.com with SMTP id v199so72657315wmv.0 for ; Wed, 08 Jun 2016 09:54:06 -0700 (PDT) From: =?UTF-8?q?Alex=20Benn=C3=A9e?= Date: Wed, 8 Jun 2016 17:54:18 +0100 Message-Id: <1465404858-2484-4-git-send-email-alex.bennee@linaro.org> In-Reply-To: <1465404858-2484-1-git-send-email-alex.bennee@linaro.org> References: <1465404858-2484-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] [PATCH 3/3] .travis.yml: disable Sparse testing List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Paolo Bonzini , =?UTF-8?q?Alex=20Benn=C3=A9e?= From: Paolo Bonzini On travis-ci.org, all builds fail with /usr/include/features.h:324:11: error: unable to open bits/predefs.h With "make docker-travis@ubuntu", they fail with /usr/include/features.h:374:13: error: unable to open sys/cdefs.h With "make docker-travis@fedora", finally, they fail due to sparse not being able to parse some #pragmas in glib headers. Just kill the thing from the CI builds. Signed-off-by: Paolo Bonzini [AJB: tweak title for my OCD] Signed-off-by: Alex Bennée --- .travis.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index cde7d1a..c13881e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -64,9 +64,6 @@ script: - make -j3 && ${TEST_CMD} matrix: include: - # Sparse is GCC only - - env: CONFIG="--enable-sparse" - compiler: gcc # gprof/gcov are GCC features - env: CONFIG="--enable-gprof --enable-gcov --disable-pie" compiler: gcc -- 2.7.4