tests: support dynamic prefixes in commandtest

Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
This commit is contained in:
Martin Kletzander 2014-07-16 16:19:28 +02:00
parent 1734f9e6c0
commit 241ac07124

View File

@ -62,7 +62,8 @@ main(void)
#else #else
static int checkoutput(const char *testname) static int checkoutput(const char *testname,
char *prefix)
{ {
int ret = -1; int ret = -1;
char *expectname = NULL; char *expectname = NULL;
@ -86,6 +87,16 @@ static int checkoutput(const char *testname)
goto cleanup; goto cleanup;
} }
if (prefix) {
char *tmp = NULL;
if (virAsprintf(&tmp, "%s%s", prefix, expectlog) < 0)
goto cleanup;
VIR_FREE(expectlog);
expectlog = tmp;
}
if (STRNEQ(expectlog, actuallog)) { if (STRNEQ(expectlog, actuallog)) {
virtTestDifference(stderr, expectlog, actuallog); virtTestDifference(stderr, expectlog, actuallog);
goto cleanup; goto cleanup;
@ -173,7 +184,7 @@ static int test2(const void *unused ATTRIBUTE_UNUSED)
return -1; return -1;
} }
if ((ret = checkoutput("test2")) != 0) { if ((ret = checkoutput("test2", NULL)) != 0) {
virCommandFree(cmd); virCommandFree(cmd);
return ret; return ret;
} }
@ -187,7 +198,7 @@ static int test2(const void *unused ATTRIBUTE_UNUSED)
virCommandFree(cmd); virCommandFree(cmd);
return checkoutput("test2"); return checkoutput("test2", NULL);
} }
/* /*
@ -219,7 +230,7 @@ static int test3(const void *unused ATTRIBUTE_UNUSED)
goto cleanup; goto cleanup;
} }
ret = checkoutput("test3"); ret = checkoutput("test3", NULL);
cleanup: cleanup:
virCommandFree(cmd); virCommandFree(cmd);
@ -261,7 +272,7 @@ static int test4(const void *unused ATTRIBUTE_UNUSED)
while (kill(pid, 0) != -1) while (kill(pid, 0) != -1)
usleep(100*1000); usleep(100*1000);
ret = checkoutput("test4"); ret = checkoutput("test4", NULL);
cleanup: cleanup:
virCommandFree(cmd); virCommandFree(cmd);
@ -291,7 +302,7 @@ static int test5(const void *unused ATTRIBUTE_UNUSED)
virCommandFree(cmd); virCommandFree(cmd);
return checkoutput("test5"); return checkoutput("test5", NULL);
} }
@ -315,7 +326,7 @@ static int test6(const void *unused ATTRIBUTE_UNUSED)
virCommandFree(cmd); virCommandFree(cmd);
return checkoutput("test6"); return checkoutput("test6", NULL);
} }
@ -340,7 +351,7 @@ static int test7(const void *unused ATTRIBUTE_UNUSED)
virCommandFree(cmd); virCommandFree(cmd);
return checkoutput("test7"); return checkoutput("test7", NULL);
} }
/* /*
@ -365,7 +376,7 @@ static int test8(const void *unused ATTRIBUTE_UNUSED)
virCommandFree(cmd); virCommandFree(cmd);
return checkoutput("test8"); return checkoutput("test8", NULL);
} }
@ -403,7 +414,7 @@ static int test9(const void *unused ATTRIBUTE_UNUSED)
virCommandFree(cmd); virCommandFree(cmd);
return checkoutput("test9"); return checkoutput("test9", NULL);
} }
@ -429,7 +440,7 @@ static int test10(const void *unused ATTRIBUTE_UNUSED)
virCommandFree(cmd); virCommandFree(cmd);
return checkoutput("test10"); return checkoutput("test10", NULL);
} }
/* /*
@ -453,7 +464,7 @@ static int test11(const void *unused ATTRIBUTE_UNUSED)
virCommandFree(cmd); virCommandFree(cmd);
return checkoutput("test11"); return checkoutput("test11", NULL);
} }
/* /*
@ -475,7 +486,7 @@ static int test12(const void *unused ATTRIBUTE_UNUSED)
virCommandFree(cmd); virCommandFree(cmd);
return checkoutput("test12"); return checkoutput("test12", NULL);
} }
/* /*
@ -510,7 +521,7 @@ static int test13(const void *unused ATTRIBUTE_UNUSED)
goto cleanup; goto cleanup;
} }
ret = checkoutput("test13"); ret = checkoutput("test13", NULL);
cleanup: cleanup:
virCommandFree(cmd); virCommandFree(cmd);
@ -582,7 +593,7 @@ static int test14(const void *unused ATTRIBUTE_UNUSED)
goto cleanup; goto cleanup;
} }
ret = checkoutput("test14"); ret = checkoutput("test14", NULL);
cleanup: cleanup:
virCommandFree(cmd); virCommandFree(cmd);
@ -613,7 +624,7 @@ static int test15(const void *unused ATTRIBUTE_UNUSED)
goto cleanup; goto cleanup;
} }
ret = checkoutput("test15"); ret = checkoutput("test15", NULL);
cleanup: cleanup:
VIR_FREE(cwd); VIR_FREE(cwd);
@ -659,7 +670,7 @@ static int test16(const void *unused ATTRIBUTE_UNUSED)
goto cleanup; goto cleanup;
} }
ret = checkoutput("test16"); ret = checkoutput("test16", NULL);
cleanup: cleanup:
virCommandFree(cmd); virCommandFree(cmd);
@ -841,7 +852,7 @@ static int test20(const void *unused ATTRIBUTE_UNUSED)
goto cleanup; goto cleanup;
} }
ret = checkoutput("test20"); ret = checkoutput("test20", NULL);
cleanup: cleanup:
virCommandFree(cmd); virCommandFree(cmd);
VIR_FREE(buf); VIR_FREE(buf);
@ -900,7 +911,7 @@ static int test21(const void *unused ATTRIBUTE_UNUSED)
goto cleanup; goto cleanup;
} }
ret = checkoutput("test21"); ret = checkoutput("test21", NULL);
cleanup: cleanup:
VIR_FREE(outbuf); VIR_FREE(outbuf);
VIR_FREE(errbuf); VIR_FREE(errbuf);