Fixed an issue with fuzzing seeds.
This commit is contained in:
parent
ed4e1582bf
commit
e6997f706e
9 changed files with 29 additions and 30 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue