Browse Source

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.
pull/4/head
Jack Grigg 7 years ago
parent
commit
f8ef223ce3
No known key found for this signature in database GPG Key ID: 665DBCD284F7DAFF
  1. 2
      qa/pull-tester/rpc-tests.sh

2
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} ---"

Loading…
Cancel
Save