From f8ef223ce381a9f59b1f4b085d360abad6cb9499 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Thu, 5 Oct 2017 15:13:28 +0100 Subject: [PATCH] Un-indent RPC test output in test runner The indentation caused the test stdout to be buffered and only printed at the end of the test, which makes it harder to diagnose hanging tests. --- qa/pull-tester/rpc-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/pull-tester/rpc-tests.sh b/qa/pull-tester/rpc-tests.sh index ed2bfca0a..5631f894f 100755 --- a/qa/pull-tester/rpc-tests.sh +++ b/qa/pull-tester/rpc-tests.sh @@ -85,7 +85,7 @@ function runTestScript echo -e "=== Running testscript ${testName} ===" - if eval "$@" | sed 's/^/ /' + if eval "$@" then successCount=$(expr $successCount + 1) echo "--- Success: ${testName} ---"