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
@@ -699,43 +699,43 @@ mymain(void)
|
||||
{
|
||||
int ret = 0;
|
||||
|
||||
if (virtTestRun("Rotating file write new", testRotatingFileWriterNew, NULL) < 0)
|
||||
if (virTestRun("Rotating file write new", testRotatingFileWriterNew, NULL) < 0)
|
||||
ret = -1;
|
||||
|
||||
if (virtTestRun("Rotating file write append", testRotatingFileWriterAppend, NULL) < 0)
|
||||
if (virTestRun("Rotating file write append", testRotatingFileWriterAppend, NULL) < 0)
|
||||
ret = -1;
|
||||
|
||||
if (virtTestRun("Rotating file write truncate", testRotatingFileWriterTruncate, NULL) < 0)
|
||||
if (virTestRun("Rotating file write truncate", testRotatingFileWriterTruncate, NULL) < 0)
|
||||
ret = -1;
|
||||
|
||||
if (virtTestRun("Rotating file write rollover no backup", testRotatingFileWriterRolloverNone, NULL) < 0)
|
||||
if (virTestRun("Rotating file write rollover no backup", testRotatingFileWriterRolloverNone, NULL) < 0)
|
||||
ret = -1;
|
||||
|
||||
if (virtTestRun("Rotating file write rollover one", testRotatingFileWriterRolloverOne, NULL) < 0)
|
||||
if (virTestRun("Rotating file write rollover one", testRotatingFileWriterRolloverOne, NULL) < 0)
|
||||
ret = -1;
|
||||
|
||||
if (virtTestRun("Rotating file write rollover append", testRotatingFileWriterRolloverAppend, NULL) < 0)
|
||||
if (virTestRun("Rotating file write rollover append", testRotatingFileWriterRolloverAppend, NULL) < 0)
|
||||
ret = -1;
|
||||
|
||||
if (virtTestRun("Rotating file write rollover many", testRotatingFileWriterRolloverMany, NULL) < 0)
|
||||
if (virTestRun("Rotating file write rollover many", testRotatingFileWriterRolloverMany, NULL) < 0)
|
||||
ret = -1;
|
||||
|
||||
if (virtTestRun("Rotating file write rollover line break", testRotatingFileWriterRolloverLineBreak, NULL) < 0)
|
||||
if (virTestRun("Rotating file write rollover line break", testRotatingFileWriterRolloverLineBreak, NULL) < 0)
|
||||
ret = -1;
|
||||
|
||||
if (virtTestRun("Rotating file write to file larger then maxlen", testRotatingFileWriterLargeFile, NULL) < 0)
|
||||
if (virTestRun("Rotating file write to file larger then maxlen", testRotatingFileWriterLargeFile, NULL) < 0)
|
||||
ret = -1;
|
||||
|
||||
if (virtTestRun("Rotating file read one", testRotatingFileReaderOne, NULL) < 0)
|
||||
if (virTestRun("Rotating file read one", testRotatingFileReaderOne, NULL) < 0)
|
||||
ret = -1;
|
||||
|
||||
if (virtTestRun("Rotating file read all", testRotatingFileReaderAll, NULL) < 0)
|
||||
if (virTestRun("Rotating file read all", testRotatingFileReaderAll, NULL) < 0)
|
||||
ret = -1;
|
||||
|
||||
if (virtTestRun("Rotating file read partial", testRotatingFileReaderPartial, NULL) < 0)
|
||||
if (virTestRun("Rotating file read partial", testRotatingFileReaderPartial, NULL) < 0)
|
||||
ret = -1;
|
||||
|
||||
if (virtTestRun("Rotating file read seek", testRotatingFileReaderSeek, NULL) < 0)
|
||||
if (virTestRun("Rotating file read seek", testRotatingFileReaderSeek, NULL) < 0)
|
||||
ret = -1;
|
||||
|
||||
return ret == 0 ? EXIT_SUCCESS : EXIT_FAILURE;
|
||||
|
||||
Reference in New Issue
Block a user