All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] test: add process-each-duplicate-vgnames
@ 2013-08-21 22:55 David Teigland
  0 siblings, 0 replies; only message in thread
From: David Teigland @ 2013-08-21 22:55 UTC (permalink / raw)
  To: lvm-devel

Test that vgs shows both vgs when two vgs
exist with the same name but different uuids.
---
 test/shell/process-each-duplicate-vgnames.sh | 52 ++++++++++++++++++++++++++++
 1 file changed, 52 insertions(+)
 create mode 100644 test/shell/process-each-duplicate-vgnames.sh

diff --git a/test/shell/process-each-duplicate-vgnames.sh b/test/shell/process-each-duplicate-vgnames.sh
new file mode 100644
index 0000000..8be8168
--- /dev/null
+++ b/test/shell/process-each-duplicate-vgnames.sh
@@ -0,0 +1,52 @@
+#!/bin/sh
+# Copyright (C) 2008-2013 Red Hat, Inc. All rights reserved.
+#
+# This copyrighted material is made available to anyone wishing to use,
+# modify, copy, or redistribute it subject to the terms and conditions
+# of the GNU General Public License v.2.
+
+test_description='Test vgs with duplicate vg names'
+
+. lib/test
+
+aux prepare_devs 2
+
+pvcreate $dev1
+pvcreate $dev2
+
+aux disable_dev $dev1
+aux disable_dev $dev2
+
+aux enable_dev $dev1
+vgcreate $vg1 $dev1
+UUID1=$(vgs --noheading -o vg_uuid $vg1)
+aux disable_dev $dev1
+
+aux enable_dev $dev2
+vgcreate $vg1 $dev2
+UUID2=$(vgs --noheading -o vg_uuid $vg1)
+aux disable_dev $dev2
+
+aux enable_dev $dev1
+aux enable_dev $dev2
+
+vgs >err
+grep $UUID1 err
+grep $UUID2 err
+
+# should we specify and test which should be displayed?
+# vgs --noheading -o vg_uuid $vg1 >err
+# grep $UUID1 err
+
+aux disable_dev $dev2
+vgs >err
+grep $UUID1 err
+not grep $UUID2 err
+aux enable_dev $dev2
+
+aux disable_dev $dev1
+vgs >err
+grep $UUID2 err
+not grep $UUID1 err
+aux enable_dev $dev1
+
-- 
1.8.3.1



^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2013-08-21 22:55 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-21 22:55 [PATCH] test: add process-each-duplicate-vgnames David Teigland

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.