diff options
author | John Newbery <john@johnnewbery.com> | 2017-11-29 13:25:23 -0500 |
---|---|---|
committer | John Newbery <john@johnnewbery.com> | 2017-11-29 15:10:05 -0500 |
commit | dba94ead0cb4ca90aeb894aca0a87a34e4dc9886 (patch) | |
tree | a360ee705ac212eb7c37091d4f8e60eb977ee2b4 /test/functional/test_framework | |
parent | bba1c54edd73406e66ddae5ae2ac90183c3582bf (diff) |
[tests] [travis-ci] Move Travis functional test log post processing to test_runner
Diffstat (limited to 'test/functional/test_framework')
-rwxr-xr-x | test/functional/test_framework/test_framework.py | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/test/functional/test_framework/test_framework.py b/test/functional/test_framework/test_framework.py index 102babb9f4..54fe689686 100755 --- a/test/functional/test_framework/test_framework.py +++ b/test/functional/test_framework/test_framework.py @@ -4,7 +4,6 @@ # file COPYING or http://www.opensource.org/licenses/mit-license.php. """Base class for RPC testing.""" -from collections import deque from enum import Enum import logging import optparse @@ -149,21 +148,6 @@ class BitcoinTestFramework(): shutil.rmtree(self.options.tmpdir) else: self.log.warning("Not cleaning up dir %s" % self.options.tmpdir) - if os.getenv("PYTHON_DEBUG", ""): - # Dump the end of the debug logs, to aid in debugging rare - # travis failures. - import glob - filenames = [self.options.tmpdir + "/test_framework.log"] - filenames += glob.glob(self.options.tmpdir + "/node*/regtest/debug.log") - MAX_LINES_TO_PRINT = 1000 - for fn in filenames: - try: - with open(fn, 'r') as f: - print("From", fn, ":") - print("".join(deque(f, MAX_LINES_TO_PRINT))) - except OSError: - print("Opening file %s failed." % fn) - traceback.print_exc() if success == TestStatus.PASSED: self.log.info("Tests successful") |