2013-05-28 01:55:01 +02:00
|
|
|
#!/bin/sh
|
2014-03-18 10:11:00 +01:00
|
|
|
# Copyright (c) 2013 The Bitcoin Core developers
|
|
|
|
# Distributed under the MIT/X11 software license, see the accompanying
|
|
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#
|
2013-05-28 01:55:01 +02:00
|
|
|
# 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
|
|
|
|
|
|
|
|
cd $1
|
|
|
|
shift
|
|
|
|
|
|
|
|
./autogen.sh
|
|
|
|
./configure
|
|
|
|
./qa/pull-tester/build-tests.sh "$@"
|