From b0be9abf18e9a500165f3915857b39bd9b71ffa0 Mon Sep 17 00:00:00 2001 From: Alex Groce Date: Mon, 2 Jul 2018 15:22:20 -0700 Subject: [PATCH] fix args missing in run_tests --- bin/deepstate/main_manticore.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/deepstate/main_manticore.py b/bin/deepstate/main_manticore.py index 4af9370..7a1b156 100644 --- a/bin/deepstate/main_manticore.py +++ b/bin/deepstate/main_manticore.py @@ -352,7 +352,7 @@ def run_test(state, apis, test, hook_test): sys.exc_info()[0], traceback.format_exc())) -def run_tests(state, apis, hook_test_ea): +def run_tests(args, state, apis): """Run all of the test cases.""" pool = multiprocessing.Pool(processes=max(1, args.num_workers)) results = []