aboutsummaryrefslogtreecommitdiff
path: root/test/util/test_runner.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/util/test_runner.py')
-rwxr-xr-xtest/util/test_runner.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/util/test_runner.py b/test/util/test_runner.py
index 03db05c563..83308f3408 100755
--- a/test/util/test_runner.py
+++ b/test/util/test_runner.py
@@ -54,7 +54,7 @@ def bctester(testDir, input_basename, buildenv):
try:
bctest(testDir, testObj, buildenv)
logging.info("PASSED: " + testObj["description"])
- except:
+ except Exception:
logging.info("FAILED: " + testObj["description"])
failed_testcases.append(testObj["description"])
@@ -96,7 +96,7 @@ def bctest(testDir, testObj, buildenv):
try:
with open(os.path.join(testDir, outputFn), encoding="utf8") as f:
outputData = f.read()
- except:
+ except Exception:
logging.error("Output file " + outputFn + " cannot be opened")
raise
if not outputData: