]> xenbits.xensource.com Git - libvirt.git/commitdiff
tests: Rename virtTestCounterReset to virTestCounterReset.
authorTomáš Ryšavý <tom.rysavy.0@gmail.com>
Thu, 26 May 2016 15:01:57 +0000 (17:01 +0200)
committerJohn Ferlan <jferlan@redhat.com>
Wed, 8 Jun 2016 15:23:12 +0000 (11:23 -0400)
This function doesn't follow our convention of naming functions.

tests/qemucommandutiltest.c
tests/testutils.c
tests/testutils.h
tests/virbitmaptest.c
tests/virfiletest.c
tests/virstoragetest.c

index 73c4563937947aefebf42aa679911529f3493474..08f12c5e463b13f9fb8e6e3eccd912f072cb5a7e 100644 (file)
@@ -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 {                                                            \
index 4a44d6a4a284d3865268e6750f75858d92cea95e..0f51ce9fe5b9818f1219cd3632e6ecaebecb7f15 100644 (file)
@@ -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
index d395120ffecb672ec80b8a78d945f451f50663af..e4ed7d30eab18603f7992d1b6fad9b1c5cc9bdad 100644 (file)
@@ -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,
index a59065b5cc045f43df52ef338b6925dbdad0015f..eb2385f2d9841269608c633bf681273e70dec756 100644 (file)
@@ -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);
index 736d1642277b7d42bf4b84ed28377d06eddfb048..27e83fd103c2d2229a29372922cc22333c08b6d3 100644 (file)
@@ -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");
index 01c124830a40303887eb6f9617c63d97bf97889c..3d4a7637c01abbd5fb664edd0e71447d1f4fda0b 100644 (file)
@@ -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);