X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=tests.c;h=e494d9c3042c539986e22f8de47ad1d011a7b3a7;hp=082068a37e84642b89bc6fc1c8be88ac8b02835e;hb=24bee20ce4196d45891925332a47a05aa5e40938;hpb=9222136ac9b2e404dba128b1ac74dacaa8bf1038 diff --git a/tests.c b/tests.c index 082068a..e494d9c 100644 --- a/tests.c +++ b/tests.c @@ -112,6 +112,35 @@ static void no_test_warnings (void) fprintf (stderr, "warning: \"guestfs_get_e2uuid\" has no tests\n"); } +static int test_dmesg_0 (void) +{ + /* InitEmpty for dmesg (0) */ + { + int r; + suppress_error = 0; + r = guestfs_umount_all (g); + if (r == -1) + return -1; + } + { + int r; + suppress_error = 0; + r = guestfs_lvm_remove_all (g); + if (r == -1) + return -1; + } + /* TestRun for dmesg (0) */ + { + char *r; + suppress_error = 0; + r = guestfs_dmesg (g); + if (r == NULL) + return -1; + free (r); + } + return 0; +} + static int test_drop_caches_0 (void) { /* InitEmpty for drop_caches (0) */ @@ -7263,9 +7292,15 @@ int main (int argc, char *argv[]) exit (1); } - nr_tests = 102; + nr_tests = 103; test_num++; + printf ("%3d/%3d test_dmesg_0\n", test_num, nr_tests); + if (test_dmesg_0 () == -1) { + printf ("test_dmesg_0 FAILED\n"); + failed++; + } + test_num++; printf ("%3d/%3d test_drop_caches_0\n", test_num, nr_tests); if (test_drop_caches_0 () == -1) { printf ("test_drop_caches_0 FAILED\n");