mirror of
https://github.com/libvirt/libvirt.git
synced 2025-02-25 18:55:26 -06:00
tests: Rename virtTestRun to virTestRun.
This function doesn't follow our convention of naming functions.
This commit is contained in:
committed by
John Ferlan
parent
09b406a756
commit
cd7dd1508d
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user