diff options
| author | Cory Fields <[email protected]> | 2014-10-30 22:29:35 -0400 |
|---|---|---|
| committer | Cory Fields <[email protected]> | 2014-10-31 00:05:55 -0400 |
| commit | fa7f8cdc1ac92047cd876d750851cf4230fc8295 (patch) | |
| tree | 44e414c691727539770d6156cbdf42cc08290c9e /qa/pull-tester/pull-tester.sh | |
| parent | tests: fix forknotify.py on windows (diff) | |
| download | discoin-fa7f8cdc1ac92047cd876d750851cf4230fc8295.tar.xz discoin-fa7f8cdc1ac92047cd876d750851cf4230fc8295.zip | |
tests: remove old pull-tester scripts
They're unused since the switch to Travis
Diffstat (limited to 'qa/pull-tester/pull-tester.sh')
| -rwxr-xr-x | qa/pull-tester/pull-tester.sh | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/qa/pull-tester/pull-tester.sh b/qa/pull-tester/pull-tester.sh deleted file mode 100755 index 3fe4a05c7..000000000 --- a/qa/pull-tester/pull-tester.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/sh -# Copyright (c) 2013-2014 The Bitcoin Core developers -# Distributed under the MIT software license, see the accompanying -# file COPYING or http://www.opensource.org/licenses/mit-license.php. -# -# Helper script for pull-tester. -#Param 1: path to bitcoin srcroot -#Param ...: arguments for build-test.sh - -if [ $# -lt 1 ]; then - echo "usage: $0 [bitcoin srcroot] build-test arguments..." -fi - -killall -q bitcoin-cli -killall -q bitcoind - -cd $1 -shift - -./autogen.sh -./configure -./qa/pull-tester/build-tests.sh "$@" |