aboutsummaryrefslogtreecommitdiff
path: root/qa/pull-tester/pull-tester.sh
diff options
context:
space:
mode:
authorCory Fields <cory-nospam-@coryfields.com>2014-10-30 22:29:35 -0400
committerCory Fields <cory-nospam-@coryfields.com>2014-10-31 00:05:55 -0400
commitfa7f8cdc1ac92047cd876d750851cf4230fc8295 (patch)
tree44e414c691727539770d6156cbdf42cc08290c9e /qa/pull-tester/pull-tester.sh
parent5122ea7190f85952ef27153bb1778831efb3e0ec (diff)
downloadbitcoin-fa7f8cdc1ac92047cd876d750851cf4230fc8295.tar.xz
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-xqa/pull-tester/pull-tester.sh22
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 3fe4a05c76..0000000000
--- 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 "$@"