From nobody Fri May 3 17:31:33 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) client-ip=208.118.235.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org Return-Path: Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) by mx.zohomail.com with SMTPS id 1502794850847571.0445807424074; Tue, 15 Aug 2017 04:00:50 -0700 (PDT) Received: from localhost ([::1]:52817 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dhZab-0001o4-3K for importer@patchew.org; Tue, 15 Aug 2017 07:00:49 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36976) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dhZXM-0007ql-Ic for qemu-devel@nongnu.org; Tue, 15 Aug 2017 06:57:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dhZXL-0002Kl-GQ for qemu-devel@nongnu.org; Tue, 15 Aug 2017 06:57:28 -0400 Received: from mx1.redhat.com ([209.132.183.28]:5237) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dhZXL-0002KC-7E for qemu-devel@nongnu.org; Tue, 15 Aug 2017 06:57:27 -0400 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 0559E76B2E; Tue, 15 Aug 2017 10:57:26 +0000 (UTC) Received: from lemon.redhat.com (ovpn-12-61.pek2.redhat.com [10.72.12.61]) by smtp.corp.redhat.com (Postfix) with ESMTP id AD7CB505DE; Tue, 15 Aug 2017 10:57:24 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 0559E76B2E Authentication-Results: ext-mx01.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx01.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=famz@redhat.com From: Fam Zheng To: qemu-devel@nongnu.org Date: Tue, 15 Aug 2017 18:57:17 +0800 Message-Id: <20170815105721.31893-2-famz@redhat.com> In-Reply-To: <20170815105721.31893-1-famz@redhat.com> References: <20170815105721.31893-1-famz@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.25]); Tue, 15 Aug 2017 10:57:26 +0000 (UTC) Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PULL 1/5] Makefile: Let "make check-help" work without running ./configure X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: peter.maydell@linaro.org Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" X-ZohoMail: RSF_0 Z_629925259 SPT_0 Content-Type: text/plain; charset="utf-8" Currently if you do "make check-help" in a fresh checkout, only an error is printed which is not nice: $ make check-help V=3D1 cc -nostdlib -o check-help.mo cc: fatal error: no input files compilation terminated. rules.mak:115: recipe for target 'check-help.mo' failed make: *** [check-help.mo] Error 1 Move the config-host.mak condition into the body of tests/Makefile.include and always include the rule for check-help. Reported-by: Philippe Mathieu-Daud=C3=A9 Signed-off-by: Fam Zheng Message-Id: <20170810085025.14076-1-famz@redhat.com> Reviewed-by: Philippe Mathieu-Daud=C3=A9 Tested-by: Philippe Mathieu-Daud=C3=A9 Signed-off-by: Fam Zheng --- Makefile | 2 -- tests/Makefile.include | 46 +++++++++++++++++++++++++--------------------- 2 files changed, 25 insertions(+), 23 deletions(-) diff --git a/Makefile b/Makefile index 97a58a0f4e..81447b1f08 100644 --- a/Makefile +++ b/Makefile @@ -281,9 +281,7 @@ dummy :=3D $(call unnest-vars,, \ common-obj-m \ trace-obj-y) =20 -ifneq ($(wildcard config-host.mak),) include $(SRC_PATH)/tests/Makefile.include -endif =20 all: $(DOCS) $(TOOLS) $(HELPERS-y) recurse-all modules =20 diff --git a/tests/Makefile.include b/tests/Makefile.include index eb4895f94a..37c1bed683 100644 --- a/tests/Makefile.include +++ b/tests/Makefile.include @@ -1,3 +1,26 @@ + +.PHONY: check-help +check-help: + @echo "Regression testing targets:" + @echo + @echo " make check Run all tests" + @echo " make check-qtest-TARGET Run qtest tests for given target" + @echo " make check-qtest Run qtest tests" + @echo " make check-unit Run qobject tests" + @echo " make check-speed Run qobject speed tests" + @echo " make check-qapi-schema Run QAPI schema tests" + @echo " make check-block Run block tests" + @echo " make check-report.html Generates an HTML test report" + @echo " make check-clean Clean the tests" + @echo + @echo "Please note that HTML reports do not regenerate if the unit tests" + @echo "has not changed." + @echo + @echo "The variable SPEED can be set to control the gtester speed setting= ." + @echo "Default options are -k and (for make V=3D1) --verbose; they can be" + @echo "changed with variable GTESTER_OPTIONS." + +ifneq ($(wildcard config-host.mak),) export SRC_PATH =20 qapi-py =3D $(SRC_PATH)/scripts/qapi.py $(SRC_PATH)/scripts/ordereddict.py @@ -802,27 +825,6 @@ $(check-qtest-y): $(qtest-obj-y) =20 tests/test-qga: tests/test-qga.o $(qtest-obj-y) =20 -.PHONY: check-help -check-help: - @echo "Regression testing targets:" - @echo - @echo " make check Run all tests" - @echo " make check-qtest-TARGET Run qtest tests for given target" - @echo " make check-qtest Run qtest tests" - @echo " make check-unit Run qobject tests" - @echo " make check-speed Run qobject speed tests" - @echo " make check-qapi-schema Run QAPI schema tests" - @echo " make check-block Run block tests" - @echo " make check-report.html Generates an HTML test report" - @echo " make check-clean Clean the tests" - @echo - @echo "Please note that HTML reports do not regenerate if the unit tests" - @echo "has not changed." - @echo - @echo "The variable SPEED can be set to control the gtester speed setting= ." - @echo "Default options are -k and (for make V=3D1) --verbose; they can be" - @echo "changed with variable GTESTER_OPTIONS." - SPEED =3D quick GTESTER_OPTIONS =3D -k $(if $(V),--verbose,-q) GCOV_OPTIONS =3D -n $(if $(V),-f,) @@ -917,3 +919,5 @@ all: $(QEMU_IOTESTS_HELPERS-y) =20 -include $(wildcard tests/*.d) -include $(wildcard tests/libqos/*.d) + +endif --=20 2.13.4 From nobody Fri May 3 17:31:33 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) client-ip=208.118.235.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org Return-Path: Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) by mx.zohomail.com with SMTPS id 1502794746892962.8232289321371; Tue, 15 Aug 2017 03:59:06 -0700 (PDT) Received: from localhost ([::1]:52706 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dhZYu-0000Oi-QH for importer@patchew.org; Tue, 15 Aug 2017 06:59:04 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36991) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dhZXO-0007r3-2g for qemu-devel@nongnu.org; Tue, 15 Aug 2017 06:57:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dhZXN-0002Lj-Ah for qemu-devel@nongnu.org; Tue, 15 Aug 2017 06:57:30 -0400 Received: from mx1.redhat.com ([209.132.183.28]:48868) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dhZXN-0002LB-4p for qemu-devel@nongnu.org; Tue, 15 Aug 2017 06:57:29 -0400 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id C923E6C0B6; Tue, 15 Aug 2017 10:57:27 +0000 (UTC) Received: from lemon.redhat.com (ovpn-12-61.pek2.redhat.com [10.72.12.61]) by smtp.corp.redhat.com (Postfix) with ESMTP id 93A69505DE; Tue, 15 Aug 2017 10:57:26 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com C923E6C0B6 Authentication-Results: ext-mx03.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx03.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=famz@redhat.com From: Fam Zheng To: qemu-devel@nongnu.org Date: Tue, 15 Aug 2017 18:57:18 +0800 Message-Id: <20170815105721.31893-3-famz@redhat.com> In-Reply-To: <20170815105721.31893-1-famz@redhat.com> References: <20170815105721.31893-1-famz@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.27]); Tue, 15 Aug 2017 10:57:28 +0000 (UTC) Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PULL 2/5] docker: use one package per line in CentOS config X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: peter.maydell@linaro.org Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" X-ZohoMail: RSF_0 Z_629925259 SPT_0 Content-Type: text/plain; charset="utf-8" From: Philippe Mathieu-Daud=C3=A9 This ease rebase/cherry-pick, also it is faster to visually find if a packa= ge is here. Signed-off-by: Philippe Mathieu-Daud=C3=A9 Message-Id: <20170728233316.13352-2-f4bug@amsat.org> Signed-off-by: Fam Zheng --- tests/docker/dockerfiles/centos6.docker | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/tests/docker/dockerfiles/centos6.docker b/tests/docker/dockerf= iles/centos6.docker index 17a4d24d54..9b91e832c2 100644 --- a/tests/docker/dockerfiles/centos6.docker +++ b/tests/docker/dockerfiles/centos6.docker @@ -1,8 +1,18 @@ FROM centos:6 RUN yum install -y epel-release -ENV PACKAGES libfdt-devel ccache \ - tar git make gcc g++ flex bison \ - zlib-devel glib2-devel SDL-devel pixman-devel \ - epel-release +ENV PACKAGES \ + bison \ + ccache \ + flex \ + g++ \ + gcc \ + git \ + glib2-devel \ + libfdt-devel \ + make \ + pixman-devel \ + SDL-devel \ + tar \ + zlib-devel RUN yum install -y $PACKAGES RUN rpm -q $PACKAGES | sort > /packages.txt --=20 2.13.4 From nobody Fri May 3 17:31:33 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) client-ip=208.118.235.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org Return-Path: Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) by mx.zohomail.com with SMTPS id 1502794748902719.601583388436; Tue, 15 Aug 2017 03:59:08 -0700 (PDT) Received: from localhost ([::1]:52707 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dhZYw-0000Rk-Ob for importer@patchew.org; Tue, 15 Aug 2017 06:59:06 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37007) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dhZXP-0007ru-Lu for qemu-devel@nongnu.org; Tue, 15 Aug 2017 06:57:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dhZXO-0002MV-Vm for qemu-devel@nongnu.org; Tue, 15 Aug 2017 06:57:31 -0400 Received: from mx1.redhat.com ([209.132.183.28]:56241) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dhZXO-0002M8-Pn for qemu-devel@nongnu.org; Tue, 15 Aug 2017 06:57:30 -0400 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id AAA19C05A1A3; Tue, 15 Aug 2017 10:57:29 +0000 (UTC) Received: from lemon.redhat.com (ovpn-12-61.pek2.redhat.com [10.72.12.61]) by smtp.corp.redhat.com (Postfix) with ESMTP id 64133505DE; Tue, 15 Aug 2017 10:57:28 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com AAA19C05A1A3 Authentication-Results: ext-mx07.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx07.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=famz@redhat.com From: Fam Zheng To: qemu-devel@nongnu.org Date: Tue, 15 Aug 2017 18:57:19 +0800 Message-Id: <20170815105721.31893-4-famz@redhat.com> In-Reply-To: <20170815105721.31893-1-famz@redhat.com> References: <20170815105721.31893-1-famz@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.31]); Tue, 15 Aug 2017 10:57:29 +0000 (UTC) Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PULL 3/5] docker: add Xen libs to centos6 image X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: peter.maydell@linaro.org Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" X-ZohoMail: RSF_0 Z_629925259 SPT_0 Content-Type: text/plain; charset="utf-8" From: Philippe Mathieu-Daud=C3=A9 Signed-off-by: Philippe Mathieu-Daud=C3=A9 Message-Id: <20170728233316.13352-3-f4bug@amsat.org> Signed-off-by: Fam Zheng --- tests/docker/dockerfiles/centos6.docker | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/docker/dockerfiles/centos6.docker b/tests/docker/dockerf= iles/centos6.docker index 9b91e832c2..8588a12eab 100644 --- a/tests/docker/dockerfiles/centos6.docker +++ b/tests/docker/dockerfiles/centos6.docker @@ -1,5 +1,5 @@ FROM centos:6 -RUN yum install -y epel-release +RUN yum install -y epel-release centos-release-xen ENV PACKAGES \ bison \ ccache \ @@ -13,6 +13,7 @@ ENV PACKAGES \ pixman-devel \ SDL-devel \ tar \ + xen-devel \ zlib-devel RUN yum install -y $PACKAGES RUN rpm -q $PACKAGES | sort > /packages.txt --=20 2.13.4 From nobody Fri May 3 17:31:33 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) client-ip=208.118.235.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org Return-Path: Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) by mx.zohomail.com with SMTPS id 1502794933183826.2943760193293; Tue, 15 Aug 2017 04:02:13 -0700 (PDT) Received: from localhost ([::1]:52886 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dhZbw-0002m0-4H for importer@patchew.org; Tue, 15 Aug 2017 07:02:12 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37020) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dhZXR-0007uE-ML for qemu-devel@nongnu.org; Tue, 15 Aug 2017 06:57:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dhZXQ-0002NU-R7 for qemu-devel@nongnu.org; Tue, 15 Aug 2017 06:57:33 -0400 Received: from mx1.redhat.com ([209.132.183.28]:49530) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dhZXQ-0002NC-L2 for qemu-devel@nongnu.org; Tue, 15 Aug 2017 06:57:32 -0400 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 8772D6C0B6; Tue, 15 Aug 2017 10:57:31 +0000 (UTC) Received: from lemon.redhat.com (ovpn-12-61.pek2.redhat.com [10.72.12.61]) by smtp.corp.redhat.com (Postfix) with ESMTP id 408607F5F5; Tue, 15 Aug 2017 10:57:29 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 8772D6C0B6 Authentication-Results: ext-mx03.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx03.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=famz@redhat.com From: Fam Zheng To: qemu-devel@nongnu.org Date: Tue, 15 Aug 2017 18:57:20 +0800 Message-Id: <20170815105721.31893-5-famz@redhat.com> In-Reply-To: <20170815105721.31893-1-famz@redhat.com> References: <20170815105721.31893-1-famz@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.27]); Tue, 15 Aug 2017 10:57:31 +0000 (UTC) Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PULL 4/5] docker: install more packages on CentOS to extend code coverage X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: peter.maydell@linaro.org Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" X-ZohoMail: RSF_0 Z_629925259 SPT_0 Content-Type: text/plain; charset="utf-8" From: Philippe Mathieu-Daud=C3=A9 Signed-off-by: Philippe Mathieu-Daud=C3=A9 Message-Id: <20170728233316.13352-4-f4bug@amsat.org> Signed-off-by: Fam Zheng --- tests/docker/dockerfiles/centos6.docker | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tests/docker/dockerfiles/centos6.docker b/tests/docker/dockerf= iles/centos6.docker index 8588a12eab..f6aae13f29 100644 --- a/tests/docker/dockerfiles/centos6.docker +++ b/tests/docker/dockerfiles/centos6.docker @@ -2,17 +2,27 @@ FROM centos:6 RUN yum install -y epel-release centos-release-xen ENV PACKAGES \ bison \ + bzip2-devel \ ccache \ + csnappy-devel \ flex \ g++ \ gcc \ git \ glib2-devel \ + libepoxy-devel \ libfdt-devel \ + librdmacm-devel \ + lzo-devel \ make \ + mesa-libEGL-devel \ + mesa-libgbm-devel \ pixman-devel \ SDL-devel \ + spice-glib-devel \ + spice-server-devel \ tar \ + vte-devel \ xen-devel \ zlib-devel RUN yum install -y $PACKAGES --=20 2.13.4 From nobody Fri May 3 17:31:33 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) client-ip=208.118.235.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org Return-Path: Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) by mx.zohomail.com with SMTPS id 150279500610599.74975285612709; Tue, 15 Aug 2017 04:03:26 -0700 (PDT) Received: from localhost ([::1]:52921 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dhZd7-0003Rf-2f for importer@patchew.org; Tue, 15 Aug 2017 07:03:25 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37064) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dhZXV-0007y4-Rn for qemu-devel@nongnu.org; Tue, 15 Aug 2017 06:57:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dhZXS-0002Od-Qv for qemu-devel@nongnu.org; Tue, 15 Aug 2017 06:57:37 -0400 Received: from mx1.redhat.com ([209.132.183.28]:51651) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dhZXS-0002OA-KR for qemu-devel@nongnu.org; Tue, 15 Aug 2017 06:57:34 -0400 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 77C962CE96E; Tue, 15 Aug 2017 10:57:33 +0000 (UTC) Received: from lemon.redhat.com (ovpn-12-61.pek2.redhat.com [10.72.12.61]) by smtp.corp.redhat.com (Postfix) with ESMTP id 16D70505DE; Tue, 15 Aug 2017 10:57:31 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 77C962CE96E Authentication-Results: ext-mx05.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx05.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=famz@redhat.com From: Fam Zheng To: qemu-devel@nongnu.org Date: Tue, 15 Aug 2017 18:57:21 +0800 Message-Id: <20170815105721.31893-6-famz@redhat.com> In-Reply-To: <20170815105721.31893-1-famz@redhat.com> References: <20170815105721.31893-1-famz@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.29]); Tue, 15 Aug 2017 10:57:33 +0000 (UTC) Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PULL 5/5] docker: add centos7 image X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: peter.maydell@linaro.org Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" X-ZohoMail: RSF_0 Z_629925259 SPT_0 Content-Type: text/plain; charset="utf-8" From: Philippe Mathieu-Daud=C3=A9 Signed-off-by: Philippe Mathieu-Daud=C3=A9 Message-Id: <20170728233316.13352-5-f4bug@amsat.org> Signed-off-by: Fam Zheng --- tests/docker/dockerfiles/centos7.docker | 31 +++++++++++++++++++++++++++++= ++ 1 file changed, 31 insertions(+) create mode 100644 tests/docker/dockerfiles/centos7.docker diff --git a/tests/docker/dockerfiles/centos7.docker b/tests/docker/dockerf= iles/centos7.docker new file mode 100644 index 0000000000..0b59aa2f26 --- /dev/null +++ b/tests/docker/dockerfiles/centos7.docker @@ -0,0 +1,31 @@ +FROM centos:7 +RUN yum install -y epel-release centos-release-xen +RUN yum -y update +ENV PACKAGES \ + bison \ + bzip2-devel \ + ccache \ + csnappy-devel \ + flex \ + g++ \ + gcc \ + git \ + glib2-devel \ + libepoxy-devel \ + libfdt-devel \ + librdmacm-devel \ + lzo-devel \ + make \ + mesa-libEGL-devel \ + mesa-libgbm-devel \ + pixman-devel \ + SDL-devel \ + spice-glib-devel \ + spice-server-devel \ + tar \ + vte-devel \ + xen-devel \ + zlib-devel +RUN yum install -y $PACKAGES +RUN rpm -q $PACKAGES | sort > /packages.txt + --=20 2.13.4