diff options
Diffstat (limited to 'qa/pull-tester')
-rwxr-xr-x | qa/pull-tester/build-tests.sh.in | 3 | ||||
-rwxr-xr-x | qa/pull-tester/pull-tester.sh | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/qa/pull-tester/build-tests.sh.in b/qa/pull-tester/build-tests.sh.in index e7db721110..ebf377a489 100755 --- a/qa/pull-tester/build-tests.sh.in +++ b/qa/pull-tester/build-tests.sh.in @@ -74,6 +74,9 @@ make check # Run RPC integration test on Linux: @abs_top_srcdir@/qa/rpc-tests/wallet.sh @abs_top_srcdir@/linux-build/src +@abs_top_srcdir@/qa/rpc-tests/listtransactions.py --srcdir @abs_top_srcdir@/linux-build/src +# Clean up cache/ directory that the python regression tests create +rm -rf cache if [ $RUN_EXPENSIVE_TESTS = 1 ]; then # Run unit tests and blockchain-tester on Windows: diff --git a/qa/pull-tester/pull-tester.sh b/qa/pull-tester/pull-tester.sh index bbee92967d..d3356f736a 100755 --- a/qa/pull-tester/pull-tester.sh +++ b/qa/pull-tester/pull-tester.sh @@ -11,6 +11,9 @@ if [ $# -lt 1 ]; then echo "usage: $0 [bitcoin srcroot] build-test arguments..." fi +killall -q bitcoin-cli +killall -q bitcoind + cd $1 shift |