From aab646a0330430e750a92004a3a2a66d65b623b6 Mon Sep 17 00:00:00 2001 From: Alfredo Garcia Date: Thu, 19 Sep 2024 18:49:56 -0300 Subject: [PATCH] ignore stderr in the output --- zebra-rpc/qa/pull-tester/rpc-tests.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/zebra-rpc/qa/pull-tester/rpc-tests.py b/zebra-rpc/qa/pull-tester/rpc-tests.py index b754d040400..00194f0aa53 100755 --- a/zebra-rpc/qa/pull-tester/rpc-tests.py +++ b/zebra-rpc/qa/pull-tester/rpc-tests.py @@ -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='')