aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWladimir J. van der Laan <[email protected]>2014-10-14 10:46:58 +0200
committerWladimir J. van der Laan <[email protected]>2014-10-14 10:50:22 +0200
commit2e4f6127bf6e9f01ea5eb0f711b275270c489e9d (patch)
tree1034e5dee9a8ba8fb20f6e6e3fcf9f8f8dd9f749
parentMerge pull request #5080 (diff)
parentrpc-tests: don't spew non-errors to stdout (diff)
downloaddiscoin-2e4f6127bf6e9f01ea5eb0f711b275270c489e9d.tar.xz
discoin-2e4f6127bf6e9f01ea5eb0f711b275270c489e9d.zip
Merge pull request #5074
005b5af rpc-tests: don't spew non-errors to stdout (Cory Fields)
-rwxr-xr-xqa/rpc-tests/send.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/qa/rpc-tests/send.sh b/qa/rpc-tests/send.sh
index 8c0f11459..37367865c 100755
--- a/qa/rpc-tests/send.sh
+++ b/qa/rpc-tests/send.sh
@@ -16,7 +16,7 @@ fi
if [ $1 = "-STOP" ]; then
if [ -s ${PIDFILE} ]; then
- kill -s ${SIGNAL} $(<${PIDFILE})
+ kill -s ${SIGNAL} $(<$PIDFILE 2>/dev/null) 2>/dev/null
fi
exit 0
fi