From: wysochanski@sourceware.org <wysochanski@sourceware.org>
To: lvm-devel@redhat.com
Subject: LVM2/test/api test.c
Date: 24 Jul 2009 12:51:32 -0000 [thread overview]
Message-ID: <20090724125132.22753.qmail@sourceware.org> (raw)
CVSROOT: /cvs/lvm2
Module name: LVM2
Changes by: wysochanski at sourceware.org 2009-07-24 12:51:32
Modified files:
test/api : test.c
Log message:
Add tests for lvm_vg_name_list, lvm_vg_id_list and lvm_scan_vgs.
Author: Dave Wysochanski <dwysocha@redhat.com>
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/test/api/test.c.diff?cvsroot=lvm2&r1=1.4&r2=1.5
--- LVM2/test/api/test.c 2009/07/24 04:15:30 1.4
+++ LVM2/test/api/test.c 2009/07/24 12:51:32 1.5
@@ -50,6 +50,12 @@
static void _show_help(void)
{
+ printf("'scan_vgs': "
+ "Scan the system for LVM metadata\n");
+ printf("'vg_list_names': "
+ "List the names of the VGs that exist in the system\n");
+ printf("'vg_list_ids': "
+ "List the uuids of the VGs that exist in the system\n");
printf("'vg_list_pvs vgname': "
"List the PVs that exist in VG vgname\n");
printf("'vg_list_lvs vgname': "
@@ -230,6 +236,40 @@
}
}
+static void _scan_vgs(lvm_t libh)
+{
+ lvm_scan_vgs(libh);
+}
+
+static void _vg_list_names(lvm_t libh)
+{
+ struct dm_list *list;
+ struct lvm_str_list *strl;
+ const char *tmp;
+
+ list = lvm_list_vg_names(libh);
+ printf("VG names:\n");
+ dm_list_iterate_items(strl, list) {
+ tmp = strl->str;
+ printf("%s\n", tmp);
+ }
+}
+
+static void _vg_list_ids(lvm_t libh)
+{
+ struct dm_list *list;
+ struct lvm_str_list *strl;
+ const char *tmp;
+
+ list = lvm_list_vg_ids(libh);
+ printf("VG uuids:\n");
+ dm_list_iterate_items(strl, list) {
+ tmp = strl->str;
+ printf("%s\n", tmp);
+ }
+}
+
+
static void _lvs_in_vg(char **argv, int argc)
{
struct dm_list *lvs;
@@ -301,6 +341,12 @@
_pvs_in_vg(argv, argc);
} else if (!strcmp(argv[0], "vg_list_lvs")) {
_lvs_in_vg(argv, argc);
+ } else if (!strcmp(argv[0], "vg_list_names")) {
+ _vg_list_names(libh);
+ } else if (!strcmp(argv[0], "vg_list_ids")) {
+ _vg_list_ids(libh);
+ } else if (!strcmp(argv[0], "scan_vgs")) {
+ _scan_vgs(libh);
} else {
printf ("Unrecognized command %s\n", argv[0]);
}
next reply other threads:[~2009-07-24 12:51 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-07-24 12:51 wysochanski [this message]
-- strict thread matches above, loose matches on Subject: below --
2011-03-01 23:29 LVM2/test/api test.c zkabelac
2011-03-01 23:18 zkabelac
2010-11-25 14:35 mornfall
2010-11-17 20:13 mornfall
2010-11-17 19:17 mornfall
2010-10-25 14:09 wysochanski
2010-05-19 11:53 wysochanski
2010-02-24 18:16 wysochanski
2009-08-07 21:22 wysochanski
2009-07-28 14:12 wysochanski
2009-07-28 13:49 wysochanski
2009-07-27 21:02 wysochanski
2009-07-27 17:45 wysochanski
2009-07-26 20:59 wysochanski
2009-07-26 20:58 wysochanski
2009-07-26 14:37 wysochanski
2009-07-26 13:08 wysochanski
2009-07-26 13:07 wysochanski
2009-07-26 2:35 wysochanski
2009-07-26 2:35 wysochanski
2009-07-24 4:15 wysochanski
2009-07-23 23:40 wysochanski
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20090724125132.22753.qmail@sourceware.org \
--to=wysochanski@sourceware.org \
--cc=lvm-devel@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.