tests: Rename virtTestRun to virTestRun.

This function doesn't follow our convention of naming functions.
This commit is contained in:
Tomáš Ryšavý
2016-05-26 17:01:50 +02:00
committed by John Ferlan
parent 09b406a756
commit cd7dd1508d
109 changed files with 606 additions and 606 deletions

View File

@@ -278,7 +278,7 @@ testTypedParamsValidator(void)
};
for (i = 0; test[i].name; ++i) {
if (virtTestRun(test[i].name, testTypedParamsValidate, &test[i]) < 0)
if (virTestRun(test[i].name, testTypedParamsValidate, &test[i]) < 0)
rv = -1;
}
@@ -293,13 +293,13 @@ mymain(void)
if (testTypedParamsValidator() < 0)
rv = -1;
if (virtTestRun("Filtering", testTypedParamsFilter, NULL) < 0)
if (virTestRun("Filtering", testTypedParamsFilter, NULL) < 0)
rv = -1;
if (virtTestRun("Get All Strings", testTypedParamsGetStringList, NULL) < 0)
if (virTestRun("Get All Strings", testTypedParamsGetStringList, NULL) < 0)
rv = -1;
if (virtTestRun("Add string list", testTypedParamsAddStringList, NULL) < 0)
if (virTestRun("Add string list", testTypedParamsAddStringList, NULL) < 0)
rv = -1;
if (rv < 0)