From 13964d053b010395fd76be5cdad5d0565ebed33b Mon Sep 17 00:00:00 2001 From: JP Smith Date: Thu, 13 Jul 2017 13:57:18 -0400 Subject: [PATCH] create workspace before running manticore to make memdump tests pass (#388) --- tests/test_memdumps.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/test_memdumps.py b/tests/test_memdumps.py index e54de79..48a1fc4 100644 --- a/tests/test_memdumps.py +++ b/tests/test_memdumps.py @@ -69,6 +69,8 @@ class IntegrationTest(unittest.TestCase): args = ['python', '-m', 'manticore', '--timeout', '400', '--workspace', workspace, dumpfile] + os.mkdir(workspace) + for k,v in params.iteritems(): if k.startswith("--"): args.extend([k, v.format(dumpdir=dumpdir, workspace=workspace)])