From b6ac21341d634801fc90a994fe3b385c4d1d090f Mon Sep 17 00:00:00 2001 From: Benoit Foucher Date: Mon, 3 Oct 2016 14:28:20 +0200 Subject: Fix for 7406 and issue with space in path passed to icehashpassword.py --- scripts/TestUtil.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'scripts/TestUtil.py') diff --git a/scripts/TestUtil.py b/scripts/TestUtil.py index 1f58b90c991..6f68bcca00c 100755 --- a/scripts/TestUtil.py +++ b/scripts/TestUtil.py @@ -879,7 +879,8 @@ def hashPasswords(filePath, entries): os.remove(filePath) passwords = open(filePath, "a") - command = "%s %s" % (sys.executable, os.path.abspath(os.path.join(os.path.dirname(__file__), "icehashpassword.py"))) + command = '%s "%s"' % (sys.executable, + os.path.abspath(os.path.join(os.path.dirname(__file__), "icehashpassword.py"))) # # For Linux ARM default rounds makes test slower (Usually runs on embbeded boards) -- cgit v1.2.3