From patchwork Thu Apr 21 17:50:15 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Cole Robinson X-Patchwork-Id: 66400 Delivered-To: patch@linaro.org Received: by 10.140.93.198 with SMTP id d64csp287561qge; Thu, 21 Apr 2016 10:53:27 -0700 (PDT) X-Received: by 10.194.13.100 with SMTP id g4mr4155395wjc.90.1461261207532; Thu, 21 Apr 2016 10:53:27 -0700 (PDT) Return-Path: Received: from mx5-phx2.redhat.com (mx5-phx2.redhat.com. [209.132.183.37]) by mx.google.com with ESMTPS id p5si4707514wmd.62.2016.04.21.10.53.26 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 21 Apr 2016 10:53:27 -0700 (PDT) Received-SPF: pass (google.com: domain of libvir-list-bounces@redhat.com designates 209.132.183.37 as permitted sender) client-ip=209.132.183.37; Authentication-Results: mx.google.com; spf=pass (google.com: domain of libvir-list-bounces@redhat.com designates 209.132.183.37 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by mx5-phx2.redhat.com (8.14.4/8.14.4) with ESMTP id u3LHouZN054533; Thu, 21 Apr 2016 13:50:56 -0400 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id u3LHoPVa019309 for ; Thu, 21 Apr 2016 13:50:25 -0400 Received: from colepc.redhat.com (ovpn-113-44.phx2.redhat.com [10.3.113.44]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id u3LHoOTI009902; Thu, 21 Apr 2016 13:50:25 -0400 From: Cole Robinson To: libvirt-list@redhat.com Date: Thu, 21 Apr 2016 13:50:15 -0400 Message-Id: <7dba071d8ac7461171c26e31b9bdc08771c5299a.1461260748.git.crobinso@redhat.com> In-Reply-To: References: In-Reply-To: References: X-Scanned-By: MIMEDefang 2.68 on 10.5.11.22 X-loop: libvir-list@redhat.com Subject: [libvirt] [PATCH 1/5] tests: build: Remove duplicate libvirtd test list X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com Store the test list in libvirtd_test_scripts, and use it where appropriate. This also fixes the fact that we didn't ship virsh-uriprecedence when libvirtd build is disabled. --- tests/Makefile.am | 24 +++++------------------- 1 file changed, 5 insertions(+), 19 deletions(-) -- 2.7.3 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list diff --git a/tests/Makefile.am b/tests/Makefile.am index db4f88b..b32435d 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -367,8 +367,7 @@ test_scripts = \ domainsnapshotschematest \ secretschematest -if WITH_LIBVIRTD -test_scripts += \ +libvirtd_test_scripts = \ test_conf.sh \ cpuset \ define-dev-segfault \ @@ -387,27 +386,14 @@ test_scripts += \ virsh-undefine \ $(NULL) +if WITH_LIBVIRTD +test_scripts += $(libvirtd_test_scripts) + test_programs += \ eventtest \ libvirtdconftest else ! WITH_LIBVIRTD -EXTRA_DIST += \ - test_conf.sh \ - cpuset \ - define-dev-segfault \ - int-overflow \ - libvirtd-fail \ - libvirtd-pool \ - read-bufsiz \ - read-non-seekable \ - start \ - vcpupin \ - virsh-all \ - virsh-optparse \ - virsh-schedinfo \ - virsh-synopsis \ - virsh-undefine \ - $(NULL) +EXTRA_DIST += $(libvirtd_test_scripts) endif ! WITH_LIBVIRTD test_programs += objecteventtest