Skip to content

Commit

Permalink
ignore stderr in the output
Browse files Browse the repository at this point in the history
  • Loading branch information
oxarbitrage committed Sep 19, 2024
1 parent e376f3a commit aab646a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion zebra-rpc/qa/pull-tester/rpc-tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,9 @@ def run_tests(test_handler, test_list, src_dir, build_dir, exeext, jobs=1, enabl

print('\n' + BOLD[1] + name + BOLD[0] + ":")
print('' if passed else stdout + '\n', end='')
print('' if stderr == '' else 'stderr:\n' + stderr + '\n', end='')
# TODO: Zebrad always produce the welcome message in the stderr.
# Ignoring stderr output here until that is fixed.
#print('' if stderr == '' else 'stderr:\n' + stderr + '\n', end='')
print("Pass: %s%s%s" % (BOLD[1], passed, BOLD[0]), end='')
if deterministic:
print("\n", end='')
Expand Down

0 comments on commit aab646a

Please sign in to comment.