We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2222c30 commit fa69cefCopy full SHA for fa69cef
test/functional/test_framework/test_framework.py
@@ -12,6 +12,7 @@
12
import pdb
13
import random
14
import shutil
15
+import subprocess
16
import sys
17
import tempfile
18
import time
@@ -121,6 +122,9 @@ def main(self):
121
122
except KeyError:
123
self.log.exception("Key error")
124
self.success = TestStatus.FAILED
125
+ except subprocess.CalledProcessError as e:
126
+ self.log.exception("Called Process failed with '{}'".format(e.output))
127
+ self.success = TestStatus.FAILED
128
except Exception:
129
self.log.exception("Unexpected exception caught during testing")
130
0 commit comments