aboutsummaryrefslogtreecommitdiff
path: root/test/functional/combine_logs.py
diff options
context:
space:
mode:
authorChun Kuan Lee <ken2812221@gmail.com>2018-08-20 02:54:54 +0800
committerChun Kuan Lee <ken2812221@gmail.com>2018-09-17 09:56:49 +0800
commit2148c36b6ec02fcf10d6d3b76e50b690ee93bdfd (patch)
treec3ec637a5285aefb72d08de0e153b7335b72c4e3 /test/functional/combine_logs.py
parent3832c25f176753b7ddb724c26ee7543fb1e1819e (diff)
downloadbitcoin-2148c36b6ec02fcf10d6d3b76e50b690ee93bdfd.tar.xz
tests: Make it possible to run functional tests on Windows
Diffstat (limited to 'test/functional/combine_logs.py')
-rwxr-xr-xtest/functional/combine_logs.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/test/functional/combine_logs.py b/test/functional/combine_logs.py
index 3759913e44..3230d5cb6b 100755
--- a/test/functional/combine_logs.py
+++ b/test/functional/combine_logs.py
@@ -25,10 +25,6 @@ def main():
parser.add_argument('--html', dest='html', action='store_true', help='outputs the combined log as html. Requires jinja2. pip install jinja2')
args, unknown_args = parser.parse_known_args()
- if args.color and os.name != 'posix':
- print("Color output requires posix terminal colors.")
- sys.exit(1)
-
if args.html and args.color:
print("Only one out of --color or --html should be specified")
sys.exit(1)