| Index: testing/test_env.py
|
| diff --git a/testing/test_env.py b/testing/test_env.py
|
| index f2a4f286842b4e70edf20fbcd900a79b65fa0d81..4e60dbd0b4dc308ada3d28bb94432d49e00d65a2 100755
|
| --- a/testing/test_env.py
|
| +++ b/testing/test_env.py
|
| @@ -25,7 +25,11 @@ def run_executable(cmd, env):
|
| env['CR_SOURCE_ROOT'] = os.path.abspath(ROOT_DIR).encode('utf-8')
|
| if cmd[0].endswith('.py'):
|
| cmd.insert(0, sys.executable)
|
| - return subprocess.call(cmd, env=env)
|
| + try:
|
| + return subprocess.call(cmd, env=env)
|
| + except OSError:
|
| + print >> sys.stderr, 'Failed to start %s' % cmd
|
| + raise
|
|
|
|
|
| def main():
|
|
|