From 327b844341b5e46f1c39a44f93d3f33c3cd988d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Ry=C5=A1av=C3=BD?= Date: Thu, 26 May 2016 17:01:57 +0200 Subject: [PATCH] tests: Rename virtTestCounterReset to virTestCounterReset. This function doesn't follow our convention of naming functions. --- tests/qemucommandutiltest.c | 2 +- tests/testutils.c | 6 +++--- tests/testutils.h | 2 +- tests/virbitmaptest.c | 2 +- tests/virfiletest.c | 2 +- tests/virstoragetest.c | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/tests/qemucommandutiltest.c b/tests/qemucommandutiltest.c index 73c4563937..08f12c5e46 100644 --- a/tests/qemucommandutiltest.c +++ b/tests/qemucommandutiltest.c @@ -80,7 +80,7 @@ mymain(void) return EXIT_AM_SKIP; #endif - virtTestCounterReset("testQemuCommandBuildObjectFromJSON"); + virTestCounterReset("testQemuCommandBuildObjectFromJSON"); #define DO_TEST_COMMAND_OBJECT_FROM_JSON(PROPS, EXPECT) \ do { \ diff --git a/tests/testutils.c b/tests/testutils.c index 4a44d6a4a2..0f51ce9fe5 100644 --- a/tests/testutils.c +++ b/tests/testutils.c @@ -1170,7 +1170,7 @@ static char *virtTestCounterPrefixEndOffset; /** - * virtTestCounterReset: + * virTestCounterReset: * @prefix: name of the test group * * Resets the counter and sets up the test group name to use with @@ -1180,7 +1180,7 @@ static char *virtTestCounterPrefixEndOffset; * case names (including the number index) will be silently truncated. */ void -virtTestCounterReset(const char *prefix) +virTestCounterReset(const char *prefix) { virtTestCounter = 0; @@ -1196,7 +1196,7 @@ virtTestCounterReset(const char *prefix) * a way to do automagic test case numbering. * * Returns string consisting of test name prefix configured via - * virtTestCounterReset() and a number that increments in every call of this + * virTestCounterReset() and a number that increments in every call of this * function. This function is not thread safe. * * Note: The buffer for the assembled message is 128 bytes long. Longer test diff --git a/tests/testutils.h b/tests/testutils.h index d395120ffe..e4ed7d30ea 100644 --- a/tests/testutils.h +++ b/tests/testutils.h @@ -97,7 +97,7 @@ char *virtTestLogContentAndReset(void); void virtTestQuiesceLibvirtErrors(bool always); -void virtTestCounterReset(const char *prefix); +void virTestCounterReset(const char *prefix); const char *virtTestCounterNext(void); int virtTestMain(int argc, diff --git a/tests/virbitmaptest.c b/tests/virbitmaptest.c index a59065b5cc..eb2385f2d9 100644 --- a/tests/virbitmaptest.c +++ b/tests/virbitmaptest.c @@ -675,7 +675,7 @@ mymain(void) if (virTestRun("test10", test10, NULL) < 0) ret = -1; - virtTestCounterReset("test11-"); + virTestCounterReset("test11-"); TESTBINARYOP("0", "0", "0,^0", test11); TESTBINARYOP("0-3", "0", "1-3", test11); TESTBINARYOP("0-3", "0,3", "1-2", test11); diff --git a/tests/virfiletest.c b/tests/virfiletest.c index 736d164227..27e83fd103 100644 --- a/tests/virfiletest.c +++ b/tests/virfiletest.c @@ -167,7 +167,7 @@ mymain(void) #define DO_TEST_SANITIZE_PATH_SAME(PATH) DO_TEST_SANITIZE_PATH(PATH, PATH) - virtTestCounterReset("testFileSanitizePath "); + virTestCounterReset("testFileSanitizePath "); DO_TEST_SANITIZE_PATH("", ""); DO_TEST_SANITIZE_PATH("/", "/"); DO_TEST_SANITIZE_PATH("/path", "/path"); diff --git a/tests/virstoragetest.c b/tests/virstoragetest.c index 01c124830a..3d4a7637c0 100644 --- a/tests/virstoragetest.c +++ b/tests/virstoragetest.c @@ -708,7 +708,7 @@ mymain(void) } while (0) /* The actual tests, in several groups. */ - virtTestCounterReset("Storage backing chain "); + virTestCounterReset("Storage backing chain "); /* Missing file */ TEST_ONE_CHAIN("bogus", VIR_STORAGE_FILE_RAW, EXP_FAIL);