From 4ea08116b8f4346dd0e191c919187e1a5e2ee2f8 Mon Sep 17 00:00:00 2001 From: Vsevolod Livinskij Date: Wed, 3 Apr 2013 18:04:11 +0400 Subject: [PATCH] Issue #453: now run_tests.py checks ispc_exe availability --- run_tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run_tests.py b/run_tests.py index 5c82c8ca..2a803b61 100755 --- a/run_tests.py +++ b/run_tests.py @@ -62,8 +62,8 @@ else: # checks the required ispc compiler otherwise prints an error message if not os.path.exists(ispc_exe): - sys.stderr.write("Fatal error: missing the required ispc compiler \n") - sys.exit() + sys.stderr.write("Fatal error: missing ispc compiler: %s\n" % ispc_exe) + sys.exit() ispc_exe += " " + options.ispc_flags