Fixed an issue with fuzzing seeds.

This commit is contained in:
Markus Kauppila 2011-07-28 22:11:30 +03:00
parent ed4e1582bf
commit e6997f706e
9 changed files with 29 additions and 30 deletions

View file

@ -29,7 +29,7 @@
/*!
* Inits the fuzzer for a test
*/
void InitFuzzer(char *execKey);
void InitFuzzer(int execKey);
/*!
@ -113,6 +113,6 @@ char *RandomAsciiStringWithMaximumLength(int maxLength);
* \return Generated execution key as blob of 16 bytes. It needs be deallocated.
* On error, returns NULL.
*/
char *GenerateExecKey(char *runSeed, char *suiteName, char *testName, int interationNumber);
int GenerateExecKey(char *runSeed, char *suiteName, char *testName, int interationNumber);
#endif