You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
280 B
16 lines
280 B
12 years ago
|
#!/bin/sh
|
||
|
# 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 "$@"
|