1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

Update lvm2app unit test vgtest - fix remove bug.

We now must commit to disk after lvm_vg_remove().
This commit is contained in:
Dave Wysochanski 2009-09-04 19:17:46 +00:00
parent 46b50a2520
commit e2ac2ad9bc

View File

@ -49,9 +49,8 @@ uint64_t size = 1024;
printf("Committing VG %s to disk\n", vg_name); \
status = lvm_vg_write(vg); \
if (status) { \
fprintf(stderr, "Creation of volume group '%s' on " \
"device '%s' failed\n", \
lvm_vg_get_name(vg), device[0]); \
fprintf(stderr, "Commit of volume group '%s' failed\n", \
lvm_vg_get_name(vg)); \
goto bad; \
}
#define vg_open(vg_name, mode) \
@ -147,6 +146,7 @@ int main(int argc, char *argv[])
vg_open(vg_name, "w");
vg_remove(vg);
vg_commit(vg);
vg_close(vg);
lvm_quit(handle);