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

@@ -157,18 +157,18 @@ mymain(void)
{
int ret = 0;
if (virtTestRun("Test alloc all", testAllocAll, NULL) < 0)
if (virTestRun("Test alloc all", testAllocAll, NULL) < 0)
ret = -1;
if (virtTestRun("Test alloc reuse", testAllocReuse, NULL) < 0)
if (virTestRun("Test alloc reuse", testAllocReuse, NULL) < 0)
ret = -1;
setenv("LIBVIRT_TEST_IPV4ONLY", "really", 1);
if (virtTestRun("Test IPv4-only alloc all", testAllocAll, NULL) < 0)
if (virTestRun("Test IPv4-only alloc all", testAllocAll, NULL) < 0)
ret = -1;
if (virtTestRun("Test IPv4-only alloc reuse", testAllocReuse, NULL) < 0)
if (virTestRun("Test IPv4-only alloc reuse", testAllocReuse, NULL) < 0)
ret = -1;
return ret == 0 ? EXIT_SUCCESS : EXIT_FAILURE;