1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-06-27 00:21:08 +02:00

Enable -Wstrict-prototypes and update all void functions to conform.

This commit is contained in:
David Steele
2018-08-03 19:19:14 -04:00
parent bec4c176dc
commit 429a356e33
102 changed files with 185 additions and 181 deletions

View File

@ -93,6 +93,10 @@
<p>Add <code>cvtBoolToConstZ()</code> to simplify conversion of boolean to string.</p> <p>Add <code>cvtBoolToConstZ()</code> to simplify conversion of boolean to string.</p>
</release-item> </release-item>
<release-item>
<p>Enable <id>-Wstrict-prototypes</id> and update all void functions to conform.</p>
</release-item>
<release-item> <release-item>
<p>Rename error-handling variables in <code>Main.pm</code> to conform to standard.</p> <p>Rename error-handling variables in <code>Main.pm</code> to conform to standard.</p>
</release-item> </release-item>

View File

@ -18,7 +18,7 @@ CINCLUDE = -I. -I../libc
# Compile warnings # Compile warnings
CWARN = -Wfatal-errors -Wall -Wextra -Wwrite-strings -Wswitch-enum -Wconversion -Wformat=2 -Wformat-nonliteral \ CWARN = -Wfatal-errors -Wall -Wextra -Wwrite-strings -Wswitch-enum -Wconversion -Wformat=2 -Wformat-nonliteral \
-Wno-clobbered -Wno-missing-field-initializers -Wno-clobbered -Wno-missing-field-initializers -Wstrict-prototypes
# Automatically generate Perl compile options for the local system # Automatically generate Perl compile options for the local system
CPERL = `perl -MExtUtils::Embed -e ccopts` CPERL = `perl -MExtUtils::Embed -e ccopts`

View File

@ -95,7 +95,7 @@ queueNeed(const String *walSegment, bool found, size_t queueSize, size_t walSegm
Push a WAL segment to the repository Push a WAL segment to the repository
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
int int
cmdArchiveGet() cmdArchiveGet(void)
{ {
FUNCTION_DEBUG_VOID(logLevelDebug); FUNCTION_DEBUG_VOID(logLevelDebug);

View File

@ -7,6 +7,6 @@ Archive Get Command
/*********************************************************************************************************************************** /***********************************************************************************************************************************
Functions Functions
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
int cmdArchiveGet(); int cmdArchiveGet(void);
#endif #endif

View File

@ -19,7 +19,7 @@ Archive Push Command
Push a WAL segment to the repository Push a WAL segment to the repository
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
cmdArchivePush() cmdArchivePush(void)
{ {
FUNCTION_DEBUG_VOID(logLevelDebug); FUNCTION_DEBUG_VOID(logLevelDebug);

View File

@ -7,6 +7,6 @@ Archive Push Command
/*********************************************************************************************************************************** /***********************************************************************************************************************************
Functions Functions
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void cmdArchivePush(); void cmdArchivePush(void);
#endif #endif

View File

@ -21,7 +21,7 @@ static TimeMSec timeBegin;
Capture time at the very start of main so total time is more accurate Capture time at the very start of main so total time is more accurate
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
cmdInit() cmdInit(void)
{ {
FUNCTION_DEBUG_VOID(logLevelTrace); FUNCTION_DEBUG_VOID(logLevelTrace);

View File

@ -9,7 +9,7 @@ Common Command Routines
/*********************************************************************************************************************************** /***********************************************************************************************************************************
Functions Functions
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void cmdInit(); void cmdInit(void);
void cmdBegin(bool logOption); void cmdBegin(bool logOption);
void cmdEnd(int code, const String *errorMessage); void cmdEnd(int code, const String *errorMessage);

View File

@ -132,7 +132,7 @@ helpRenderValue(const Variant *value)
Render help to a string Render help to a string
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
static String * static String *
helpRender() helpRender(void)
{ {
FUNCTION_DEBUG_VOID(logLevelDebug); FUNCTION_DEBUG_VOID(logLevelDebug);
@ -383,7 +383,7 @@ helpRender()
Render help and output to stdout Render help and output to stdout
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
cmdHelp() cmdHelp(void)
{ {
FUNCTION_DEBUG_VOID(logLevelDebug); FUNCTION_DEBUG_VOID(logLevelDebug);

View File

@ -7,6 +7,6 @@ Help Command
/*********************************************************************************************************************************** /***********************************************************************************************************************************
Functions Functions
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void cmdHelp(); void cmdHelp(void);
#endif #endif

View File

@ -135,7 +135,7 @@ errorTypeParent(const ErrorType *errorType)
/*********************************************************************************************************************************** /***********************************************************************************************************************************
Get the depth of the current try statement (0 if none) Get the depth of the current try statement (0 if none)
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
unsigned int errorTryDepth() unsigned int errorTryDepth(void)
{ {
return (unsigned int)errorContext.tryTotal; return (unsigned int)errorContext.tryTotal;
} }
@ -166,7 +166,7 @@ errorTypeExtends(const ErrorType *child, const ErrorType *parent)
Error type Error type
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
const ErrorType * const ErrorType *
errorType() errorType(void)
{ {
return errorContext.error.errorType; return errorContext.error.errorType;
} }
@ -175,7 +175,7 @@ errorType()
Error code (pulled from error type) Error code (pulled from error type)
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
int int
errorCode() errorCode(void)
{ {
return errorTypeCode(errorType()); return errorTypeCode(errorType());
} }
@ -184,7 +184,7 @@ errorCode()
Error filename Error filename
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
const char * const char *
errorFileName() errorFileName(void)
{ {
return errorContext.error.fileName; return errorContext.error.fileName;
} }
@ -193,7 +193,7 @@ errorFileName()
Error function name Error function name
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
const char * const char *
errorFunctionName() errorFunctionName(void)
{ {
return errorContext.error.functionName; return errorContext.error.functionName;
} }
@ -202,7 +202,7 @@ errorFunctionName()
Error file line number Error file line number
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
int int
errorFileLine() errorFileLine(void)
{ {
return errorContext.error.fileLine; return errorContext.error.fileLine;
} }
@ -211,7 +211,7 @@ errorFileLine()
Error message Error message
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
const char * const char *
errorMessage() errorMessage(void)
{ {
return errorContext.error.message; return errorContext.error.message;
} }
@ -220,7 +220,7 @@ errorMessage()
Error name (pulled from error type) Error name (pulled from error type)
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
const char * const char *
errorName() errorName(void)
{ {
return errorTypeName(errorType()); return errorTypeName(errorType());
} }
@ -229,7 +229,7 @@ errorName()
Error stack trace Error stack trace
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
const char * const char *
errorStackTrace() errorStackTrace(void)
{ {
return errorContext.error.stackTrace; return errorContext.error.stackTrace;
} }
@ -247,7 +247,7 @@ errorInstanceOf(const ErrorType *errorTypeTest)
Return current error context state Return current error context state
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
static ErrorState static ErrorState
errorInternalState() errorInternalState(void)
{ {
return errorContext.tryList[errorContext.tryTotal].state; return errorContext.tryList[errorContext.tryTotal].state;
} }
@ -256,7 +256,7 @@ errorInternalState()
True when in try state True when in try state
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
bool bool
errorInternalStateTry() errorInternalStateTry(void)
{ {
return errorInternalState() == errorStateTry; return errorInternalState() == errorStateTry;
} }
@ -277,7 +277,7 @@ errorInternalStateCatch(const ErrorType *errorTypeCatch)
True when in final state True when in final state
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
bool bool
errorInternalStateFinal() errorInternalStateFinal(void)
{ {
return errorInternalState() == errorStateFinal; return errorInternalState() == errorStateFinal;
} }
@ -286,7 +286,7 @@ errorInternalStateFinal()
Return jump buffer for current try Return jump buffer for current try
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
jmp_buf * jmp_buf *
errorInternalJump() errorInternalJump(void)
{ {
return &errorContext.jumpList[errorContext.tryTotal - 1]; return &errorContext.jumpList[errorContext.tryTotal - 1];
} }
@ -316,7 +316,7 @@ errorInternalTry(const char *fileName, const char *functionName, int fileLine)
Propogate the error up so it can be caught Propogate the error up so it can be caught
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
errorInternalPropagate() errorInternalPropagate(void)
{ {
// Mark the error as uncaught // Mark the error as uncaught
errorContext.tryList[errorContext.tryTotal].uncaught = true; errorContext.tryList[errorContext.tryTotal].uncaught = true;

View File

@ -65,20 +65,20 @@ bool errorTypeExtends(const ErrorType *child, const ErrorType *parent);
/*********************************************************************************************************************************** /***********************************************************************************************************************************
Functions to get information about the current error Functions to get information about the current error
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
const ErrorType *errorType(); const ErrorType *errorType(void);
int errorCode(); int errorCode(void);
const char *errorFileName(); const char *errorFileName(void);
const char *errorFunctionName(); const char *errorFunctionName(void);
int errorFileLine(); int errorFileLine(void);
bool errorInstanceOf(const ErrorType *errorTypeTest); bool errorInstanceOf(const ErrorType *errorTypeTest);
const char *errorMessage(); const char *errorMessage(void);
const char *errorName(); const char *errorName(void);
const char *errorStackTrace(); const char *errorStackTrace(void);
/*********************************************************************************************************************************** /***********************************************************************************************************************************
Functions to get information about the try stack Functions to get information about the try stack
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
unsigned int errorTryDepth(); unsigned int errorTryDepth(void);
/*********************************************************************************************************************************** /***********************************************************************************************************************************
Begin a block where errors can be thrown Begin a block where errors can be thrown
@ -171,12 +171,12 @@ Internal functions
These functions are used by the macros to implement the error handler and should never be called independently. These functions are used by the macros to implement the error handler and should never be called independently.
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
bool errorInternalTry(const char *fileName, const char *functionName, int fileLine); bool errorInternalTry(const char *fileName, const char *functionName, int fileLine);
jmp_buf *errorInternalJump(); jmp_buf *errorInternalJump(void);
bool errorInternalStateTry(); bool errorInternalStateTry(void);
bool errorInternalStateCatch(const ErrorType *errorTypeCatch); bool errorInternalStateCatch(const ErrorType *errorTypeCatch);
bool errorInternalStateFinal(); bool errorInternalStateFinal(void);
bool errorInternalProcess(bool catch); bool errorInternalProcess(bool catch);
void errorInternalPropagate() __attribute__((__noreturn__)); void errorInternalPropagate(void) __attribute__((__noreturn__));
void errorInternalThrow( void errorInternalThrow(
const ErrorType *errorType, const char *fileName, const char *functionName, int fileLine, const char *message) const ErrorType *errorType, const char *fileName, const char *functionName, int fileLine, const char *message)
__attribute__((__noreturn__)); __attribute__((__noreturn__));

View File

@ -71,7 +71,7 @@ exitOnSignal(int signalType)
Setup signal handlers Setup signal handlers
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
exitInit() exitInit(void)
{ {
FUNCTION_DEBUG_VOID(logLevelTrace); FUNCTION_DEBUG_VOID(logLevelTrace);

View File

@ -20,7 +20,7 @@ typedef enum
/*********************************************************************************************************************************** /***********************************************************************************************************************************
Functions Functions
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void exitInit(); void exitInit(void);
int exitSafe(int result, bool error, SignalType signalType); int exitSafe(int result, bool error, SignalType signalType);
#endif #endif

View File

@ -12,7 +12,7 @@ Fork a new process and detach it so it can continue running after the parent pro
startup because the parent process may continue to run and perform work for some time. startup because the parent process may continue to run and perform work for some time.
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
forkDetach() forkDetach(void)
{ {
FUNCTION_DEBUG_VOID(logLevelTrace); FUNCTION_DEBUG_VOID(logLevelTrace);

View File

@ -7,6 +7,6 @@ Fork Handler
/*********************************************************************************************************************************** /***********************************************************************************************************************************
Functions Functions
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void forkDetach(); void forkDetach(void);
#endif #endif

View File

@ -24,7 +24,7 @@ struct Ini
Create a new Ini object Create a new Ini object
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
Ini * Ini *
iniNew() iniNew(void)
{ {
Ini *this = NULL; Ini *this = NULL;

View File

@ -14,7 +14,7 @@ typedef struct Ini Ini;
/*********************************************************************************************************************************** /***********************************************************************************************************************************
Functions Functions
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
Ini *iniNew(); Ini *iniNew(void);
const Variant *iniGet(const Ini *this, const String *section, const String *key); const Variant *iniGet(const Ini *this, const String *section, const String *key);
const Variant *iniGetDefault(const Ini *this, const String *section, const String *key, Variant *defaultValue); const Variant *iniGetDefault(const Ini *this, const String *section, const String *key, Variant *defaultValue);
StringList *iniSectionKeyList(const Ini *this, const String *section); StringList *iniSectionKeyList(const Ini *this, const String *section);

View File

@ -23,7 +23,7 @@ struct IoFilterGroup
Create new filter group Create new filter group
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
IoFilterGroup * IoFilterGroup *
ioFilterGroupNew() ioFilterGroupNew(void)
{ {
FUNCTION_DEBUG_VOID(logLevelTrace); FUNCTION_DEBUG_VOID(logLevelTrace);

View File

@ -15,7 +15,7 @@ typedef struct IoFilterGroup IoFilterGroup;
/*********************************************************************************************************************************** /***********************************************************************************************************************************
Constructor Constructor
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
IoFilterGroup *ioFilterGroupNew(); IoFilterGroup *ioFilterGroupNew(void);
/*********************************************************************************************************************************** /***********************************************************************************************************************************
Functions Functions

View File

@ -21,7 +21,7 @@ static size_t bufferSize = (8 * IO_BUFFER_BLOCK_SIZE);
Get/set buffer size Get/set buffer size
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
size_t size_t
ioBufferSize() ioBufferSize(void)
{ {
FUNCTION_TEST_VOID(); FUNCTION_TEST_VOID();
FUNCTION_TEST_RESULT(SIZE, bufferSize); FUNCTION_TEST_RESULT(SIZE, bufferSize);

View File

@ -9,7 +9,7 @@ IO Functions
/*********************************************************************************************************************************** /***********************************************************************************************************************************
Getters/Setters Getters/Setters
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
size_t ioBufferSize(); size_t ioBufferSize(void);
void ioBufferSizeSet(size_t bufferSize); void ioBufferSizeSet(size_t bufferSize);
#endif #endif

View File

@ -491,7 +491,7 @@ memContextSwitch(MemContext *this)
Return the top context Return the top context
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
MemContext * MemContext *
memContextTop() memContextTop(void)
{ {
FUNCTION_TEST_VOID(); FUNCTION_TEST_VOID();
FUNCTION_TEST_RESULT(MEM_CONTEXT, &contextTop); FUNCTION_TEST_RESULT(MEM_CONTEXT, &contextTop);
@ -501,7 +501,7 @@ memContextTop()
Return the current context Return the current context
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
MemContext * MemContext *
memContextCurrent() memContextCurrent(void)
{ {
FUNCTION_TEST_VOID(); FUNCTION_TEST_VOID();
FUNCTION_TEST_RESULT(MEM_CONTEXT, contextCurrent); FUNCTION_TEST_RESULT(MEM_CONTEXT, contextCurrent);

View File

@ -72,8 +72,8 @@ void memContextFree(MemContext *this);
/*********************************************************************************************************************************** /***********************************************************************************************************************************
Memory context accessors Memory context accessors
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
MemContext *memContextCurrent(); MemContext *memContextCurrent(void);
MemContext *memContextTop(); MemContext *memContextTop(void);
const char *memContextName(MemContext *this); const char *memContextName(MemContext *this);
/*********************************************************************************************************************************** /***********************************************************************************************************************************

View File

@ -91,19 +91,19 @@ Flag to enable/disable test function logging
bool stackTraceTestFlag = true; bool stackTraceTestFlag = true;
void void
stackTraceTestStart() stackTraceTestStart(void)
{ {
stackTraceTestFlag = true; stackTraceTestFlag = true;
} }
void void
stackTraceTestStop() stackTraceTestStop(void)
{ {
stackTraceTestFlag = false; stackTraceTestFlag = false;
} }
bool bool
stackTraceTest() stackTraceTest(void)
{ {
return stackTraceTestFlag; return stackTraceTestFlag;
} }
@ -248,7 +248,7 @@ stackTraceParamAdd(size_t bufferSize)
Mark that parameters are being logged -- it none appear then the function is void Mark that parameters are being logged -- it none appear then the function is void
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
stackTraceParamLog() stackTraceParamLog(void)
{ {
ASSERT_DEBUG(stackSize > 0); ASSERT_DEBUG(stackSize > 0);
@ -261,7 +261,7 @@ Pop a function from the stack trace
#ifdef NDEBUG #ifdef NDEBUG
void void
stackTracePop() stackTracePop(void)
{ {
stackSize--; stackSize--;
} }

View File

@ -36,22 +36,22 @@ Internal Functions
#endif #endif
#ifndef NDEBUG #ifndef NDEBUG
void stackTraceTestStart(); void stackTraceTestStart(void);
void stackTraceTestStop(); void stackTraceTestStop(void);
bool stackTraceTest(); bool stackTraceTest(void);
#endif #endif
LogLevel stackTracePush(const char *fileName, const char *functionName, LogLevel functionLogLevel); LogLevel stackTracePush(const char *fileName, const char *functionName, LogLevel functionLogLevel);
#ifdef NDEBUG #ifdef NDEBUG
void stackTracePop(); void stackTracePop(void);
#else #else
void stackTracePop(const char *fileName, const char *functionName); void stackTracePop(const char *fileName, const char *functionName);
#endif #endif
size_t stackTraceToZ(char *buffer, size_t bufferSize, const char *fileName, const char *functionName, unsigned int fileLine); size_t stackTraceToZ(char *buffer, size_t bufferSize, const char *fileName, const char *functionName, unsigned int fileLine);
void stackTraceParamLog(); void stackTraceParamLog(void);
const char *stackTraceParam(); const char *stackTraceParam(void);
char *stackTraceParamBuffer(const char *param); char *stackTraceParamBuffer(const char *param);
void stackTraceParamAdd(size_t bufferSize); void stackTraceParamAdd(size_t bufferSize);

View File

@ -16,7 +16,7 @@ Constants describing number of sub-units in an interval
Epoch time in milliseconds Epoch time in milliseconds
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
TimeMSec TimeMSec
timeMSec() timeMSec(void)
{ {
FUNCTION_TEST_VOID(); FUNCTION_TEST_VOID();

View File

@ -20,6 +20,6 @@ Constants describing number of sub-units in an interval
Functions Functions
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void sleepMSec(TimeMSec sleepMSec); void sleepMSec(TimeMSec sleepMSec);
TimeMSec timeMSec(); TimeMSec timeMSec(void);
#endif #endif

View File

@ -37,7 +37,7 @@ typedef struct KeyValuePair
Create a new key/value store Create a new key/value store
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
KeyValue * KeyValue *
kvNew() kvNew(void)
{ {
FUNCTION_TEST_VOID(); FUNCTION_TEST_VOID();

View File

@ -14,7 +14,7 @@ typedef struct KeyValue KeyValue;
/*********************************************************************************************************************************** /***********************************************************************************************************************************
Functions Functions
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
KeyValue *kvNew(); KeyValue *kvNew(void);
KeyValue *kvDup(const KeyValue *source); KeyValue *kvDup(const KeyValue *source);
KeyValue *kvAdd(KeyValue *this, const Variant *key, const Variant *value); KeyValue *kvAdd(KeyValue *this, const Variant *key, const Variant *value);
const VariantList *kvKeyList(const KeyValue *this); const VariantList *kvKeyList(const KeyValue *this);

View File

@ -16,7 +16,7 @@ String List Handler
Wrapper for lstNew() Wrapper for lstNew()
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
StringList * StringList *
strLstNew() strLstNew(void)
{ {
FUNCTION_TEST_VOID(); FUNCTION_TEST_VOID();
FUNCTION_TEST_RESULT(STRING_LIST, (StringList *)lstNew(sizeof(String *))); FUNCTION_TEST_RESULT(STRING_LIST, (StringList *)lstNew(sizeof(String *)));

View File

@ -25,7 +25,7 @@ typedef enum
/*********************************************************************************************************************************** /***********************************************************************************************************************************
Functions Functions
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
StringList *strLstNew(); StringList *strLstNew(void);
StringList *strLstNewSplit(const String *string, const String *delimiter); StringList *strLstNewSplit(const String *string, const String *delimiter);
StringList *strLstNewSplitZ(const String *string, const char *delimiter); StringList *strLstNewSplitZ(const String *string, const char *delimiter);
StringList *strLstNewSplitSize(const String *string, const String *delimiter, size_t size); StringList *strLstNewSplitSize(const String *string, const String *delimiter, size_t size);

View File

@ -722,7 +722,7 @@ varUInt64Force(const Variant *this)
New key/value variant New key/value variant
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
Variant * Variant *
varNewKv() varNewKv(void)
{ {
FUNCTION_TEST_VOID(); FUNCTION_TEST_VOID();

View File

@ -49,7 +49,7 @@ Variant *varNewInt64(int64_t data);
int64_t varInt64(const Variant *this); int64_t varInt64(const Variant *this);
int64_t varInt64Force(const Variant *this); int64_t varInt64Force(const Variant *this);
Variant *varNewKv(); Variant *varNewKv(void);
KeyValue *varKv(const Variant *this); KeyValue *varKv(const Variant *this);
Variant *varNewStr(const String *data); Variant *varNewStr(const String *data);

View File

@ -14,7 +14,7 @@ Variant List Handler
Wrapper for lstNew() Wrapper for lstNew()
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
VariantList * VariantList *
varLstNew() varLstNew(void)
{ {
FUNCTION_TEST_VOID(); FUNCTION_TEST_VOID();
FUNCTION_TEST_RESULT(VARIANT_LIST, (VariantList *)lstNew(sizeof(Variant *))); FUNCTION_TEST_RESULT(VARIANT_LIST, (VariantList *)lstNew(sizeof(Variant *)));

View File

@ -15,7 +15,7 @@ typedef struct VariantList VariantList;
/*********************************************************************************************************************************** /***********************************************************************************************************************************
Functions Functions
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
VariantList *varLstNew(); VariantList *varLstNew(void);
VariantList *varLstNewStrLst(const StringList *stringList); VariantList *varLstNewStrLst(const StringList *stringList);
VariantList *varLstDup(const VariantList *source); VariantList *varLstDup(const VariantList *source);
VariantList *varLstAdd(VariantList *this, Variant *data); VariantList *varLstAdd(VariantList *this, Variant *data);

View File

@ -119,7 +119,7 @@ static ConfigOptionValue configOptionValue[CFG_OPTION_TOTAL];
Initialize or reinitialize the configuration data Initialize or reinitialize the configuration data
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
cfgInit() cfgInit(void)
{ {
FUNCTION_TEST_VOID(); FUNCTION_TEST_VOID();
@ -155,7 +155,7 @@ cfgInit()
Get/set the current command Get/set the current command
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
ConfigCommand ConfigCommand
cfgCommand() cfgCommand(void)
{ {
FUNCTION_TEST_VOID(); FUNCTION_TEST_VOID();
FUNCTION_TEST_RESULT(ENUM, command); FUNCTION_TEST_RESULT(ENUM, command);
@ -179,7 +179,7 @@ cfgCommandSet(ConfigCommand commandParam)
Was help requested? Was help requested?
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
bool bool
cfgCommandHelp() cfgCommandHelp(void)
{ {
FUNCTION_TEST_VOID(); FUNCTION_TEST_VOID();
FUNCTION_TEST_RESULT(BOOL, help); FUNCTION_TEST_RESULT(BOOL, help);
@ -258,7 +258,7 @@ cfgCommandName(ConfigCommand commandId)
Command parameters, if any Command parameters, if any
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
const StringList * const StringList *
cfgCommandParam() cfgCommandParam(void)
{ {
FUNCTION_TEST_VOID(); FUNCTION_TEST_VOID();
@ -296,7 +296,7 @@ cfgCommandParamSet(const StringList *param)
Command parameters, if any Command parameters, if any
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
const String * const String *
cfgExe() cfgExe(void)
{ {
FUNCTION_TEST_VOID(); FUNCTION_TEST_VOID();
FUNCTION_TEST_RESULT(STRING, exe); FUNCTION_TEST_RESULT(STRING, exe);
@ -324,7 +324,7 @@ cfgExeSet(const String *exeParam)
Does this command require an immediate lock? Does this command require an immediate lock?
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
bool bool
cfgLockRequired() cfgLockRequired(void)
{ {
FUNCTION_TEST_BEGIN(); FUNCTION_TEST_BEGIN();
FUNCTION_TEST_ASSERT(command != cfgCmdNone); FUNCTION_TEST_ASSERT(command != cfgCmdNone);
@ -337,7 +337,7 @@ cfgLockRequired()
Get the lock type required for this command Get the lock type required for this command
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
LockType LockType
cfgLockType() cfgLockType(void)
{ {
FUNCTION_TEST_BEGIN(); FUNCTION_TEST_BEGIN();
FUNCTION_TEST_ASSERT(command != cfgCmdNone); FUNCTION_TEST_ASSERT(command != cfgCmdNone);
@ -350,7 +350,7 @@ cfgLockType()
Does this command log to a file? Does this command log to a file?
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
bool bool
cfgLogFile() cfgLogFile(void)
{ {
FUNCTION_TEST_BEGIN(); FUNCTION_TEST_BEGIN();
FUNCTION_TEST_ASSERT(command != cfgCmdNone); FUNCTION_TEST_ASSERT(command != cfgCmdNone);
@ -363,7 +363,7 @@ cfgLogFile()
Get default log level -- used for log messages that are common to all commands Get default log level -- used for log messages that are common to all commands
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
LogLevel LogLevel
cfgLogLevelDefault() cfgLogLevelDefault(void)
{ {
FUNCTION_TEST_BEGIN(); FUNCTION_TEST_BEGIN();
FUNCTION_TEST_ASSERT(command != cfgCmdNone); FUNCTION_TEST_ASSERT(command != cfgCmdNone);
@ -376,7 +376,7 @@ cfgLogLevelDefault()
Get max stderr log level -- used to suppress error output for higher log levels, e.g. local and remote commands Get max stderr log level -- used to suppress error output for higher log levels, e.g. local and remote commands
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
LogLevel LogLevel
cfgLogLevelStdErrMax() cfgLogLevelStdErrMax(void)
{ {
FUNCTION_TEST_BEGIN(); FUNCTION_TEST_BEGIN();
FUNCTION_TEST_ASSERT(command != cfgCmdNone); FUNCTION_TEST_ASSERT(command != cfgCmdNone);

View File

@ -28,17 +28,17 @@ Command Functions
Access the current command and command parameters. Access the current command and command parameters.
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
ConfigCommand cfgCommand(); ConfigCommand cfgCommand(void);
const char *cfgCommandName(ConfigCommand commandId); const char *cfgCommandName(ConfigCommand commandId);
bool cfgLockRequired(); bool cfgLockRequired(void);
LockType cfgLockType(); LockType cfgLockType(void);
bool cfgLogFile(); bool cfgLogFile(void);
LogLevel cfgLogLevelDefault(); LogLevel cfgLogLevelDefault(void);
LogLevel cfgLogLevelStdErrMax(); LogLevel cfgLogLevelStdErrMax(void);
const StringList *cfgCommandParam(); const StringList *cfgCommandParam(void);
/*********************************************************************************************************************************** /***********************************************************************************************************************************
Option Functions Option Functions
@ -81,16 +81,16 @@ Load Functions
Used primarily by modules that need to manipulate the configuration. These modules include, but are not limited to, config/parse.c, Used primarily by modules that need to manipulate the configuration. These modules include, but are not limited to, config/parse.c,
config/load.c, perl/config.c, and perl/exec.c. config/load.c, perl/config.c, and perl/exec.c.
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void cfgInit(); void cfgInit(void);
ConfigDefineCommand cfgCommandDefIdFromId(ConfigCommand commandId); ConfigDefineCommand cfgCommandDefIdFromId(ConfigCommand commandId);
bool cfgCommandHelp(); bool cfgCommandHelp(void);
void cfgCommandHelpSet(bool helpParam); void cfgCommandHelpSet(bool helpParam);
ConfigCommand cfgCommandId(const char *commandName); ConfigCommand cfgCommandId(const char *commandName);
void cfgCommandParamSet(const StringList *param); void cfgCommandParamSet(const StringList *param);
void cfgCommandSet(ConfigCommand commandParam); void cfgCommandSet(ConfigCommand commandParam);
const String *cfgExe(); const String *cfgExe(void);
void cfgExeSet(const String *exeParam); void cfgExeSet(const String *exeParam);
const Variant *cfgOptionDefault(ConfigOption optionId); const Variant *cfgOptionDefault(ConfigOption optionId);

View File

@ -260,14 +260,14 @@ cfgDefDataFind(
Command and option define totals Command and option define totals
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
unsigned int unsigned int
cfgDefCommandTotal() cfgDefCommandTotal(void)
{ {
FUNCTION_TEST_VOID(); FUNCTION_TEST_VOID();
FUNCTION_TEST_RESULT(UINT, sizeof(configDefineCommandData) / sizeof(ConfigDefineCommandData)); FUNCTION_TEST_RESULT(UINT, sizeof(configDefineCommandData) / sizeof(ConfigDefineCommandData));
} }
unsigned int unsigned int
cfgDefOptionTotal() cfgDefOptionTotal(void)
{ {
FUNCTION_TEST_VOID(); FUNCTION_TEST_VOID();
FUNCTION_TEST_RESULT(UINT, sizeof(configDefineOptionData) / sizeof(ConfigDefineOptionData)); FUNCTION_TEST_RESULT(UINT, sizeof(configDefineOptionData) / sizeof(ConfigDefineOptionData));

View File

@ -26,7 +26,7 @@ Define global section name
/*********************************************************************************************************************************** /***********************************************************************************************************************************
Functions Functions
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
unsigned int cfgDefCommandTotal(); unsigned int cfgDefCommandTotal(void);
void cfgDefCommandCheck(ConfigDefineCommand commandDefId); void cfgDefCommandCheck(ConfigDefineCommand commandDefId);
const char *cfgDefCommandHelpDescription(ConfigDefineCommand commandDefId); const char *cfgDefCommandHelpDescription(ConfigDefineCommand commandDefId);
const char *cfgDefCommandHelpSummary(ConfigDefineCommand commandDefId); const char *cfgDefCommandHelpSummary(ConfigDefineCommand commandDefId);
@ -59,7 +59,7 @@ const char *cfgDefOptionPrefix(ConfigDefineOption optionDefId);
bool cfgDefOptionRequired(ConfigDefineCommand commandDefId, ConfigDefineOption optionDefId); bool cfgDefOptionRequired(ConfigDefineCommand commandDefId, ConfigDefineOption optionDefId);
ConfigDefSection cfgDefOptionSection(ConfigDefineOption optionDefId); ConfigDefSection cfgDefOptionSection(ConfigDefineOption optionDefId);
bool cfgDefOptionSecure(ConfigDefineOption optionDefId); bool cfgDefOptionSecure(ConfigDefineOption optionDefId);
unsigned int cfgDefOptionTotal(); unsigned int cfgDefOptionTotal(void);
int cfgDefOptionType(ConfigDefineOption optionDefId); int cfgDefOptionType(ConfigDefineOption optionDefId);
bool cfgDefOptionValid(ConfigDefineCommand commandDefId, ConfigDefineOption optionDefId); bool cfgDefOptionValid(ConfigDefineCommand commandDefId, ConfigDefineOption optionDefId);

View File

@ -18,7 +18,7 @@ Configuration Load
Load log settings Load log settings
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
cfgLoadLogSetting() cfgLoadLogSetting(void)
{ {
FUNCTION_DEBUG_VOID(logLevelTrace); FUNCTION_DEBUG_VOID(logLevelTrace);
@ -55,7 +55,7 @@ cfgLoadLogSetting()
Update options that have complex rules Update options that have complex rules
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
cfgLoadUpdateOption() cfgLoadUpdateOption(void)
{ {
FUNCTION_DEBUG_VOID(logLevelTrace); FUNCTION_DEBUG_VOID(logLevelTrace);

View File

@ -10,7 +10,7 @@ Configuration Load
Functions Functions
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void cfgLoad(unsigned int argListSize, const char *argList[]); void cfgLoad(unsigned int argListSize, const char *argList[]);
void cfgLoadLogSetting(); void cfgLoadLogSetting(void);
void cfgLoadUpdateOption(); void cfgLoadUpdateOption(void);
#endif #endif

View File

@ -18,7 +18,7 @@ static bool cryptoInitDone = false;
Initialize ciphers Initialize ciphers
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
cryptoInit() cryptoInit(void)
{ {
FUNCTION_DEBUG_VOID(logLevelTrace); FUNCTION_DEBUG_VOID(logLevelTrace);
@ -37,7 +37,7 @@ cryptoInit()
Have the ciphers been initialized? Have the ciphers been initialized?
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
bool bool
cryptoIsInit() cryptoIsInit(void)
{ {
FUNCTION_TEST_VOID(); FUNCTION_TEST_VOID();
FUNCTION_TEST_RESULT(BOOL, cryptoInitDone); FUNCTION_TEST_RESULT(BOOL, cryptoInitDone);

View File

@ -9,7 +9,7 @@ Crypto Common
/*********************************************************************************************************************************** /***********************************************************************************************************************************
Functions Functions
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void cryptoInit(); void cryptoInit(void);
bool cryptoIsInit(); bool cryptoIsInit(void);
#endif #endif

View File

@ -9,7 +9,7 @@ Perl Configuration
Build JSON output from options Build JSON output from options
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
String * String *
perlOptionJson() perlOptionJson(void)
{ {
FUNCTION_TEST_VOID(); FUNCTION_TEST_VOID();

View File

@ -9,6 +9,6 @@ Perl Configuration
/*********************************************************************************************************************************** /***********************************************************************************************************************************
Functions Functions
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
String *perlOptionJson(); String *perlOptionJson(void);
#endif #endif

View File

@ -55,7 +55,7 @@ Constants used to build perl options
Build list of parameters to use for perl main Build list of parameters to use for perl main
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
String * String *
perlMain() perlMain(void)
{ {
FUNCTION_TEST_VOID(); FUNCTION_TEST_VOID();
@ -167,7 +167,7 @@ perlEval(const String *statement)
Initialize Perl Initialize Perl
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
static void static void
perlInit() perlInit(void)
{ {
FUNCTION_TEST_VOID(); FUNCTION_TEST_VOID();
@ -209,7 +209,7 @@ perlInit()
Execute main function in Perl Execute main function in Perl
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
int int
perlExec() perlExec(void)
{ {
FUNCTION_DEBUG_VOID(logLevelDebug); FUNCTION_DEBUG_VOID(logLevelDebug);

View File

@ -12,7 +12,7 @@ Error message for errors thrown from embedded Perl
/*********************************************************************************************************************************** /***********************************************************************************************************************************
Functions Functions
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
int perlExec(); int perlExec(void);
void perlFree(int result); void perlFree(int result);
#endif #endif

View File

@ -29,7 +29,7 @@ static const String *storageSpoolStanza = NULL;
Create the storage helper memory context Create the storage helper memory context
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
static void static void
storageHelperInit() storageHelperInit(void)
{ {
FUNCTION_TEST_VOID(); FUNCTION_TEST_VOID();
@ -49,7 +49,7 @@ storageHelperInit()
Get a local storage object Get a local storage object
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
const Storage * const Storage *
storageLocal() storageLocal(void)
{ {
FUNCTION_TEST_VOID(); FUNCTION_TEST_VOID();
@ -73,7 +73,7 @@ Get a writable local storage object
This should be used very sparingly. If writes are not needed then always use storageLocal() or a specific storage object instead. This should be used very sparingly. If writes are not needed then always use storageLocal() or a specific storage object instead.
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
const Storage * const Storage *
storageLocalWrite() storageLocalWrite(void)
{ {
FUNCTION_TEST_VOID(); FUNCTION_TEST_VOID();
@ -130,7 +130,7 @@ storageSpoolPathExpression(const String *expression, const String *path)
Get a spool storage object Get a spool storage object
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
const Storage * const Storage *
storageSpool() storageSpool(void)
{ {
FUNCTION_TEST_VOID(); FUNCTION_TEST_VOID();

View File

@ -15,9 +15,9 @@ Spool storage path constants
/*********************************************************************************************************************************** /***********************************************************************************************************************************
Functions Functions
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
const Storage *storageLocal(); const Storage *storageLocal(void);
const Storage *storageLocalWrite(); const Storage *storageLocalWrite(void);
const Storage *storageSpool(); const Storage *storageSpool(void);
#endif #endif

View File

@ -85,7 +85,7 @@ storageCopy(StorageFileRead *source, StorageFileWrite *destination)
ioWriteOpen(storageFileWriteIo(destination)); ioWriteOpen(storageFileWriteIo(destination));
// Copy data from source to destination // Copy data from source to destination
Buffer *read = bufNew(ioBufferSize(source)); Buffer *read = bufNew(ioBufferSize());
do do
{ {
@ -183,7 +183,7 @@ storageGet(StorageFileRead *file, StorageGetParam param)
else else
{ {
result = bufNew(0); result = bufNew(0);
Buffer *read = bufNew(ioBufferSize(file)); Buffer *read = bufNew(ioBufferSize());
do do
{ {

View File

@ -371,7 +371,7 @@ sub run
# ($self->{oTest}->{&TEST_VM} ne VM_CO6 && $self->{oTest}->{&TEST_VM} ne VM_U12 && # ($self->{oTest}->{&TEST_VM} ne VM_CO6 && $self->{oTest}->{&TEST_VM} ne VM_U12 &&
# $self->{oTest}->{&TEST_MODULE} ne 'perl' && $self->{oTest}->{&TEST_NAME} ne 'exec' ? # $self->{oTest}->{&TEST_MODULE} ne 'perl' && $self->{oTest}->{&TEST_NAME} ne 'exec' ?
# " -Wpedantic \\\n" : '') . # " -Wpedantic \\\n" : '') .
" -Wformat=2 -Wformat-nonliteral \\\n" . " -Wformat=2 -Wformat-nonliteral -Wstrict-prototypes\\\n" .
" `perl -MExtUtils::Embed -e ccopts`\n" . " `perl -MExtUtils::Embed -e ccopts`\n" .
"LDFLAGS=-lcrypto" . (vmCoverage($self->{oTest}->{&TEST_VM}) && $self->{bCoverageUnit} ? " -lgcov" : '') . "LDFLAGS=-lcrypto" . (vmCoverage($self->{oTest}->{&TEST_VM}) && $self->{bCoverageUnit} ? " -lgcov" : '') .
(vmWithBackTrace($self->{oTest}->{&TEST_VM}) && $self->{bBackTrace} ? ' -lbacktrace' : '') . (vmWithBackTrace($self->{oTest}->{&TEST_VM}) && $self->{bBackTrace} ? ' -lbacktrace' : '') .

View File

@ -62,7 +62,7 @@ harnessLogOpen(const char *logFile, int flags, int mode)
Initialize log for testing Initialize log for testing
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
harnessLogInit() harnessLogInit(void)
{ {
FUNCTION_HARNESS_VOID(); FUNCTION_HARNESS_VOID();
@ -92,7 +92,7 @@ Reset test log level
Set back to info Set back to info
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
harnessLogLevelReset() harnessLogLevelReset(void)
{ {
logInit(logLevelTestDefault, logLevelOff, logLevelInfo, false); logInit(logLevelTestDefault, logLevelOff, logLevelInfo, false);
} }
@ -222,7 +222,7 @@ harnessLogResultRegExp(const char *expression)
Make sure nothing is left in the log after all tests have completed Make sure nothing is left in the log after all tests have completed
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
harnessLogFinal() harnessLogFinal(void)
{ {
FUNCTION_HARNESS_VOID(); FUNCTION_HARNESS_VOID();

View File

@ -15,7 +15,7 @@ void harnessLogResultRegExp(const char *expression);
/*********************************************************************************************************************************** /***********************************************************************************************************************************
Setters Setters
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void harnessLogLevelReset(); void harnessLogLevelReset(void);
void harnessLogLevelSet(LogLevel logLevel); void harnessLogLevelSet(LogLevel logLevel);
#endif #endif

View File

@ -29,15 +29,15 @@ static const char *testPathData = NULL;
Extern functions Extern functions
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
#ifndef NO_LOG #ifndef NO_LOG
void harnessLogInit(); void harnessLogInit(void);
void harnessLogFinal(); void harnessLogFinal(void);
#endif #endif
/*********************************************************************************************************************************** /***********************************************************************************************************************************
Get and set the test exe Get and set the test exe
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
const char * const char *
testExe() testExe(void)
{ {
FUNCTION_HARNESS_VOID(); FUNCTION_HARNESS_VOID();
FUNCTION_HARNESS_RESULT(STRINGZ, testExeData); FUNCTION_HARNESS_RESULT(STRINGZ, testExeData);
@ -61,7 +61,7 @@ testExeSet(const char *testExe)
Get and set the test path, i.e., the path where this test should write its files Get and set the test path, i.e., the path where this test should write its files
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
const char * const char *
testPath() testPath(void)
{ {
FUNCTION_HARNESS_VOID(); FUNCTION_HARNESS_VOID();
FUNCTION_HARNESS_RESULT(STRINGZ, testPathData); FUNCTION_HARNESS_RESULT(STRINGZ, testPathData);
@ -151,7 +151,7 @@ testBegin(const char *name)
testComplete - make sure all expected tests ran testComplete - make sure all expected tests ran
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
testComplete() testComplete(void)
{ {
FUNCTION_HARNESS_VOID(); FUNCTION_HARNESS_VOID();

View File

@ -14,12 +14,12 @@ C Test Harness
// Functions // Functions
void testAdd(int run, bool selected); void testAdd(int run, bool selected);
bool testBegin(const char *name); bool testBegin(const char *name);
void testComplete(); void testComplete(void);
const char *testExe(); const char *testExe(void);
void testExeSet(const char *testExe); void testExeSet(const char *testExe);
const char *testPath(); const char *testPath(void);
void testPathSet(const char *testPath); void testPathSet(const char *testPath);
/*********************************************************************************************************************************** /***********************************************************************************************************************************

View File

@ -9,7 +9,7 @@ Test Archive Common
Test Run Test Run
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
testRun() testRun(void)
{ {
FUNCTION_HARNESS_VOID(); FUNCTION_HARNESS_VOID();

View File

@ -11,7 +11,7 @@ Test Archive Get Command
Test Run Test Run
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
testRun() testRun(void)
{ {
FUNCTION_HARNESS_VOID(); FUNCTION_HARNESS_VOID();

View File

@ -7,7 +7,7 @@ Test Archive Push Command
Test Run Test Run
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
testRun() testRun(void)
{ {
FUNCTION_HARNESS_VOID(); FUNCTION_HARNESS_VOID();

View File

@ -11,7 +11,7 @@ Test Common Command Routines
Test Run Test Run
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
testRun() testRun(void)
{ {
FUNCTION_HARNESS_VOID(); FUNCTION_HARNESS_VOID();

View File

@ -6,7 +6,7 @@ Test Assert Macros and Routines when Disabled
Test Run Test Run
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
testRun() testRun(void)
{ {
FUNCTION_HARNESS_VOID(); FUNCTION_HARNESS_VOID();

View File

@ -6,7 +6,7 @@ Test Assert Macros and Routines
Test Run Test Run
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
testRun() testRun(void)
{ {
FUNCTION_HARNESS_VOID(); FUNCTION_HARNESS_VOID();

View File

@ -6,7 +6,7 @@ Test Debug Macros and Routines when Disabled
Test Run Test Run
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
testRun() testRun(void)
{ {
FUNCTION_HARNESS_VOID(); FUNCTION_HARNESS_VOID();

View File

@ -6,14 +6,14 @@ Test Debug Macros and Routines
#include "common/harnessLog.h" #include "common/harnessLog.h"
static void static void
testFunction3() testFunction3(void)
{ {
FUNCTION_TEST_VOID(); FUNCTION_TEST_VOID();
FUNCTION_TEST_RESULT_VOID(); FUNCTION_TEST_RESULT_VOID();
} }
static void static void
testFunction2() testFunction2(void)
{ {
FUNCTION_DEBUG_VOID(logLevelTrace); FUNCTION_DEBUG_VOID(logLevelTrace);
@ -41,7 +41,7 @@ testFunction1(int paramInt, bool paramBool, double paramDouble, mode_t paramMode
Test Run Test Run
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
testRun() testRun(void)
{ {
FUNCTION_HARNESS_VOID(); FUNCTION_HARNESS_VOID();

View File

@ -6,7 +6,7 @@ Test Binary to String Encode/Decode
Test Run Test Run
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
testRun() testRun(void)
{ {
FUNCTION_HARNESS_VOID(); FUNCTION_HARNESS_VOID();

View File

@ -24,7 +24,7 @@ bool testTryRecurseCatch = false;
bool testTryRecurseFinally = false; bool testTryRecurseFinally = false;
void void
testTryRecurse() testTryRecurse(void)
{ {
TRY_BEGIN() TRY_BEGIN()
{ {
@ -48,7 +48,7 @@ testTryRecurse()
Test Run Test Run
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
testRun() testRun(void)
{ {
FUNCTION_HARNESS_VOID(); FUNCTION_HARNESS_VOID();

View File

@ -11,7 +11,7 @@ Test Exit Routines
Test Run Test Run
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
testRun() testRun(void)
{ {
FUNCTION_HARNESS_VOID(); FUNCTION_HARNESS_VOID();

View File

@ -7,7 +7,7 @@ Test Fork Handler
Test Run Test Run
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
testRun() testRun(void)
{ {
FUNCTION_HARNESS_VOID(); FUNCTION_HARNESS_VOID();

View File

@ -6,7 +6,7 @@ Test Ini
Test Run Test Run
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
testRun() testRun(void)
{ {
FUNCTION_HARNESS_VOID(); FUNCTION_HARNESS_VOID();

View File

@ -104,7 +104,7 @@ ioTestFilterSizeNew(const char *type)
Test Run Test Run
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
testRun() testRun(void)
{ {
FUNCTION_HARNESS_VOID(); FUNCTION_HARNESS_VOID();

View File

@ -9,7 +9,7 @@ Test Lock Handler
Test Run Test Run
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
testRun() testRun(void)
{ {
FUNCTION_HARNESS_VOID(); FUNCTION_HARNESS_VOID();

View File

@ -98,7 +98,7 @@ testLogResult(const char *logFile, const char *expected)
Test Run Test Run
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
testRun() testRun(void)
{ {
FUNCTION_HARNESS_VOID(); FUNCTION_HARNESS_VOID();

View File

@ -28,7 +28,7 @@ testFree(MemContext *this)
Test Run Test Run
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
testRun() testRun(void)
{ {
FUNCTION_HARNESS_VOID(); FUNCTION_HARNESS_VOID();

View File

@ -6,7 +6,7 @@ Test Regular Expression Handler
Test Run Test Run
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
testRun() testRun(void)
{ {
FUNCTION_HARNESS_VOID(); FUNCTION_HARNESS_VOID();

View File

@ -7,7 +7,7 @@ Test Stack Trace Handler
Test Run Test Run
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
testRun() testRun(void)
{ {
FUNCTION_HARNESS_VOID(); FUNCTION_HARNESS_VOID();

View File

@ -6,7 +6,7 @@ Test Time Management
Test Run Test Run
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
testRun() testRun(void)
{ {
FUNCTION_HARNESS_VOID(); FUNCTION_HARNESS_VOID();

View File

@ -6,7 +6,7 @@ Test Buffers
Test Run Test Run
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
testRun() testRun(void)
{ {
FUNCTION_HARNESS_VOID(); FUNCTION_HARNESS_VOID();

View File

@ -7,7 +7,7 @@ Test Convert Base Data Types
Test Run Test Run
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
testRun() testRun(void)
{ {
FUNCTION_HARNESS_VOID(); FUNCTION_HARNESS_VOID();

View File

@ -6,7 +6,7 @@ Test Key Value Data Type
Test Run Test Run
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
testRun() testRun(void)
{ {
FUNCTION_HARNESS_VOID(); FUNCTION_HARNESS_VOID();

View File

@ -24,7 +24,7 @@ testComparator(const void *item1, const void *item2)
Test Run Test Run
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
testRun() testRun(void)
{ {
FUNCTION_HARNESS_VOID(); FUNCTION_HARNESS_VOID();

View File

@ -7,7 +7,7 @@ Test String Lists
Test Run Test Run
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
testRun() testRun(void)
{ {
FUNCTION_HARNESS_VOID(); FUNCTION_HARNESS_VOID();

View File

@ -7,7 +7,7 @@ Test Strings
Test Run Test Run
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
testRun() testRun(void)
{ {
FUNCTION_HARNESS_VOID(); FUNCTION_HARNESS_VOID();

View File

@ -6,7 +6,7 @@ Test Variant Lists
Test Run Test Run
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
testRun() testRun(void)
{ {
FUNCTION_HARNESS_VOID(); FUNCTION_HARNESS_VOID();

View File

@ -7,7 +7,7 @@ Test Variant Data Type
Test Run Test Run
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
testRun() testRun(void)
{ {
FUNCTION_HARNESS_VOID(); FUNCTION_HARNESS_VOID();

View File

@ -4,7 +4,7 @@ Test C Types
#include <assert.h> #include <assert.h>
void void
testRun() testRun(void)
{ {
FUNCTION_HARNESS_VOID(); FUNCTION_HARNESS_VOID();

View File

@ -6,7 +6,7 @@ Test Wait Handler
Test Run Test Run
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
testRun() testRun(void)
{ {
FUNCTION_HARNESS_VOID(); FUNCTION_HARNESS_VOID();

View File

@ -6,7 +6,7 @@ Test Configuration Commands and Options
Test run Test run
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
testRun() testRun(void)
{ {
FUNCTION_HARNESS_VOID(); FUNCTION_HARNESS_VOID();

View File

@ -6,7 +6,7 @@ Test Configuration Command and Option Definition
Test run Test run
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
testRun() testRun(void)
{ {
FUNCTION_HARNESS_VOID(); FUNCTION_HARNESS_VOID();

View File

@ -19,7 +19,7 @@ extern bool logTimestamp;
Test run Test run
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
testRun() testRun(void)
{ {
FUNCTION_HARNESS_VOID(); FUNCTION_HARNESS_VOID();

View File

@ -33,7 +33,7 @@ testOptionFind(const char *option, unsigned int value)
Test run Test run
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
testRun() testRun(void)
{ {
FUNCTION_HARNESS_VOID(); FUNCTION_HARNESS_VOID();

View File

@ -16,7 +16,7 @@ Data for testing
Test Run Test Run
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
testRun() testRun(void)
{ {
FUNCTION_HARNESS_VOID(); FUNCTION_HARNESS_VOID();

View File

@ -6,7 +6,7 @@ Test Crypto Common
Test Run Test Run
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
testRun() testRun(void)
{ {
FUNCTION_HARNESS_VOID(); FUNCTION_HARNESS_VOID();

View File

@ -6,7 +6,7 @@ Test Cryptographic Hashes
Test Run Test Run
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
testRun() testRun(void)
{ {
FUNCTION_HARNESS_VOID(); FUNCTION_HARNESS_VOID();

View File

@ -6,7 +6,7 @@ Test Random
Test Run Test Run
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
testRun() testRun(void)
{ {
FUNCTION_HARNESS_VOID(); FUNCTION_HARNESS_VOID();

View File

@ -9,7 +9,7 @@ Test Help Command
Test Run Test Run
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
testRun() testRun(void)
{ {
FUNCTION_HARNESS_VOID(); FUNCTION_HARNESS_VOID();

View File

@ -7,7 +7,7 @@ Test Perl Exec
Test Run Test Run
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
testRun() testRun(void)
{ {
FUNCTION_HARNESS_VOID(); FUNCTION_HARNESS_VOID();

View File

@ -8,7 +8,7 @@ Test Perl Exec
Test Run Test Run
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
testRun() testRun(void)
{ {
FUNCTION_HARNESS_VOID(); FUNCTION_HARNESS_VOID();

View File

@ -6,7 +6,7 @@ Test PostgreSQL Info
Test Run Test Run
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
testRun() testRun(void)
{ {
FUNCTION_HARNESS_VOID(); FUNCTION_HARNESS_VOID();

View File

@ -22,7 +22,7 @@ testPage(unsigned int pageIdx)
Test Run Test Run
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
testRun() testRun(void)
{ {
FUNCTION_HARNESS_VOID(); FUNCTION_HARNESS_VOID();

View File

@ -8,7 +8,7 @@ Test Storage File
Test Run Test Run
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
void void
testRun() testRun(void)
{ {
FUNCTION_HARNESS_VOID(); FUNCTION_HARNESS_VOID();

Some files were not shown because too many files have changed in this diff Show More