summaryrefslogtreecommitdiff
path: root/test/crossrunner
diff options
context:
space:
mode:
authorJames E. King III <jking@apache.org>2019-01-31 18:35:51 -0500
committerJames E. King III <jking@apache.org>2019-02-01 11:13:49 -0500
commit3ec4031a4c6d685bcc02fa10dd13b2df58732b82 (patch)
treea8ca7edd5f22cc4503cdd194a2036e7764325663 /test/crossrunner
parent53bd0e6295547e76ab00913cfd62f8d040bd996c (diff)
downloadthrift-3ec4031a4c6d685bcc02fa10dd13b2df58732b82.tar.gz
THRIFT-4405: fix cygwin on appveyor
Diffstat (limited to 'test/crossrunner')
-rw-r--r--test/crossrunner/run.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/crossrunner/run.py b/test/crossrunner/run.py
index ef8fb60f3..bb06d25ef 100644
--- a/test/crossrunner/run.py
+++ b/test/crossrunner/run.py
@@ -259,7 +259,7 @@ def run_test(testdir, logdir, test_dict, max_retry, async_mode=True):
raise
logger.warn('Error executing [%s]', test.name, exc_info=True)
return (retry_count, RESULT_ERROR)
- except:
+ except Exception:
logger.info('Interrupted execution', exc_info=True)
if not async_mode:
raise