Added randomly generated harness seed.

This commit is contained in:
Markus Kauppila 2011-07-27 18:37:47 +03:00
parent e769714114
commit b4a88b8bef
2 changed files with 55 additions and 4 deletions

View file

@ -40,7 +40,7 @@ typedef struct LoggerData {
* logging interface. See the headers of implementations (plain_logger.h or
* xml_logger.h) for more information.
*/
typedef void (*RunStartedFp)(int parameterCount, char *runnerParameters[], char *runSeed, time_t eventTime, void *data);
typedef void (*RunStartedFp)(int parameterCount, char *runnerParameters[], char *runSeed, time_t eventTime, LoggerData *data);
typedef void (*RunEndedFp)(int testCount, int suiteCount, int testPassCount, int testFailCount,
int testSkippedCount, time_t endTime, double totalRuntime);