diff options
| -rw-r--r-- | compiler-rt/test/lit.common.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/test/lit.common.cfg b/compiler-rt/test/lit.common.cfg index 26e5f439559..bf3897e3eca 100644 --- a/compiler-rt/test/lit.common.cfg +++ b/compiler-rt/test/lit.common.cfg @@ -388,7 +388,7 @@ try: [os.path.join(config.llvm_tools_dir, 'llvm-config'), '--assertion-mode'], stdout = subprocess.PIPE, env=config.environment) -except OSError: +except OSError as e: print("Could not launch llvm-config in " + config.llvm_tools_dir) print(" Failed with error #{0}: {1}".format(e.errno, e.strerror)) exit(42) |

