Consistently stub test case save hooks

This commit is contained in:
Joe Ranweiler 2018-02-13 14:51:07 -08:00
parent ab43f75361
commit ac7e57a833
No known key found for this signature in database
GPG Key ID: E0B6458CB03D167E

View File

@ -365,14 +365,10 @@ void DeepState_BeginDrFuzz(struct DeepState_TestInfo *test) {
}
/* Save a passing test to the output test directory. */
void DeepState_SavePassingTest(void) {
}
void DeepState_SavePassingTest(void) {}
/* Save a failing test to the output test directory. */
void DeepState_SaveFailingTest(void) {
printf("Saving to %s\n", FLAGS_output_test_dir);
}
void DeepState_SaveFailingTest(void) {}
/* Save a crashing test to the output test directory. */
void DeepState_SaveCrashingTest(void) {}