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.
This commit is contained in:
Jack Grigg
2017-10-05 15:13:28 +01:00
parent 5455ca0d0e
commit f8ef223ce3

View File

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