Add --take_over flag to native binaries

This commit is contained in:
Joe Ranweiler 2018-02-20 15:29:12 -08:00
parent 661c600d2b
commit 065c97c2c0
No known key found for this signature in database
GPG Key ID: E0B6458CB03D167E
2 changed files with 2 additions and 0 deletions

View File

@ -55,6 +55,7 @@ DEEPSTATE_BEGIN_EXTERN_C
DECLARE_string(input_test_dir);
DECLARE_string(output_test_dir);
DECLARE_string(take_over);
enum {
DeepState_InputSize = 8192

View File

@ -30,6 +30,7 @@ DEFINE_uint(num_workers, 1,
DEFINE_string(input_test_dir, "", "Directory of saved tests to run.");
DEFINE_string(output_test_dir, "", "Directory where tests will be saved.");
DEFINE_string(take_over, "", "Replay test cases in take-over mode.");
/* Pointer to the last registers DeepState_TestInfo data structure */
struct DeepState_TestInfo *DeepState_LastTestInfo = NULL;