From c0ffe705c5bf908e9eaeef4fc4d0ed3ad85811f1 Mon Sep 17 00:00:00 2001 From: Mitch Phillips Date: Tue, 26 Feb 2019 18:41:55 +0000 Subject: [PATCH] Fixed a minor merge error with this patch. llvm-svn: 354908 --- compiler-rt/test/lit.common.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler-rt/test/lit.common.cfg b/compiler-rt/test/lit.common.cfg index 26e5f43..bf3897e 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) -- 2.7.4