From patchwork Thu Apr 21 17:50:16 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Cole Robinson X-Patchwork-Id: 66401 Delivered-To: patch@linaro.org Received: by 10.140.93.198 with SMTP id d64csp287598qge; Thu, 21 Apr 2016 10:53:33 -0700 (PDT) X-Received: by 10.194.107.36 with SMTP id gz4mr15893016wjb.33.1461261213125; Thu, 21 Apr 2016 10:53:33 -0700 (PDT) Return-Path: Received: from mx6-phx2.redhat.com (mx6-phx2.redhat.com. [209.132.183.39]) by mx.google.com with ESMTPS id x5si4214233wjd.70.2016.04.21.10.53.32 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 21 Apr 2016 10:53:33 -0700 (PDT) Received-SPF: pass (google.com: domain of libvir-list-bounces@redhat.com designates 209.132.183.39 as permitted sender) client-ip=209.132.183.39; Authentication-Results: mx.google.com; spf=pass (google.com: domain of libvir-list-bounces@redhat.com designates 209.132.183.39 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 mx6-phx2.redhat.com (8.14.4/8.14.4) with ESMTP id u3LHp3oC061539; Thu, 21 Apr 2016 13:51:04 -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 u3LHoQjj019314 for ; Thu, 21 Apr 2016 13:50:26 -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 u3LHoOTJ009902; Thu, 21 Apr 2016 13:50:25 -0400 From: Cole Robinson To: libvirt-list@redhat.com Date: Thu, 21 Apr 2016 13:50:16 -0400 Message-Id: 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 2/5] tests: consistently name virsh tests with 'virsh-' prefix 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 --- tests/Makefile.am | 18 +++++++++--------- tests/{cpuset => virsh-cpuset} | 0 .../{define-dev-segfault => virsh-define-dev-segfault} | 0 tests/{int-overflow => virsh-int-overflow} | 0 tests/{read-bufsiz => virsh-read-bufsiz} | 0 tests/{read-non-seekable => virsh-read-non-seekable} | 0 tests/{start => virsh-start} | 0 tests/{vcpupin => virsh-vcpupin} | 0 8 files changed, 9 insertions(+), 9 deletions(-) rename tests/{cpuset => virsh-cpuset} (100%) rename tests/{define-dev-segfault => virsh-define-dev-segfault} (100%) rename tests/{int-overflow => virsh-int-overflow} (100%) rename tests/{read-bufsiz => virsh-read-bufsiz} (100%) rename tests/{read-non-seekable => virsh-read-non-seekable} (100%) rename tests/{start => virsh-start} (100%) rename tests/{vcpupin => virsh-vcpupin} (100%) -- 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 b32435d..edf7b22 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -368,22 +368,22 @@ test_scripts = \ secretschematest libvirtd_test_scripts = \ - test_conf.sh \ - cpuset \ - define-dev-segfault \ - int-overflow \ libvirtd-fail \ libvirtd-pool \ - read-bufsiz \ - read-non-seekable \ - start \ - virsh-uriprecedence \ - vcpupin \ + test_conf.sh \ virsh-all \ + virsh-cpuset \ + virsh-define-dev-segfault \ + virsh-int-overflow \ virsh-optparse \ + virsh-read-bufsiz \ + virsh-read-non-seekable \ virsh-schedinfo \ + virsh-start \ virsh-synopsis \ virsh-undefine \ + virsh-uriprecedence \ + virsh-vcpupin \ $(NULL) if WITH_LIBVIRTD diff --git a/tests/cpuset b/tests/virsh-cpuset similarity index 100% rename from tests/cpuset rename to tests/virsh-cpuset diff --git a/tests/define-dev-segfault b/tests/virsh-define-dev-segfault similarity index 100% rename from tests/define-dev-segfault rename to tests/virsh-define-dev-segfault diff --git a/tests/int-overflow b/tests/virsh-int-overflow similarity index 100% rename from tests/int-overflow rename to tests/virsh-int-overflow diff --git a/tests/read-bufsiz b/tests/virsh-read-bufsiz similarity index 100% rename from tests/read-bufsiz rename to tests/virsh-read-bufsiz diff --git a/tests/read-non-seekable b/tests/virsh-read-non-seekable similarity index 100% rename from tests/read-non-seekable rename to tests/virsh-read-non-seekable diff --git a/tests/start b/tests/virsh-start similarity index 100% rename from tests/start rename to tests/virsh-start diff --git a/tests/vcpupin b/tests/virsh-vcpupin similarity index 100% rename from tests/vcpupin rename to tests/virsh-vcpupin