Skip to content

Commit 534a648

Browse files
committed
Do not write error if bitcoind process not found
We unconditionally kill `bitcoind` in the integration test script. This is correct but when there is no `bitcoind` process running results in a output `bitcoind: no process found`. This output is misleading because it makes one think that `bitcoind` didn't start up correctly. Send the stderr warning to `/dev/null`.
1 parent de74dc0 commit 534a648

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

integration_test/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ rm -rf ${TESTDIR}
77
mkdir -p ${TESTDIR}/1
88

99
# To kill any remaining open bitcoind.
10-
killall -9 bitcoind
10+
killall -9 bitcoind 2> /dev/null
1111

1212
echo $PATH
1313

0 commit comments

Comments
 (0)