From 02e8a66ff8509c9ea9012266983d6b53381d6f5e Mon Sep 17 00:00:00 2001 From: Otto Date: Tue, 23 Nov 2021 11:24:10 +0100 Subject: [PATCH] Fir error reporting when starting up fails --- regression-tests.api/runtests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/regression-tests.api/runtests.py b/regression-tests.api/runtests.py index 9b12cc6287..92587bb513 100755 --- a/regression-tests.api/runtests.py +++ b/regression-tests.api/runtests.py @@ -257,9 +257,9 @@ if not available: serverproc.terminate() serverproc.wait() print("==STDOUT===") - print(proc.stdout.read()) + print(serverproc.stdout.read()) print("==STDERRR===") - print(proc.stderr.read()) + print(serverproc.stderr.read()) sys.exit(2) print("Query for example.com/A to create statistic data...") -- 2.47.2