From ac7e57a8330569f841067c1234d292f2e65e877a Mon Sep 17 00:00:00 2001 From: Joe Ranweiler Date: Tue, 13 Feb 2018 14:51:07 -0800 Subject: [PATCH] Consistently stub test case save hooks --- src/lib/DeepState.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/lib/DeepState.c b/src/lib/DeepState.c index 6009160..ec566b6 100644 --- a/src/lib/DeepState.c +++ b/src/lib/DeepState.c @@ -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) {}