aboutsummaryrefslogtreecommitdiff
path: root/contrib/regression.sh
blob: c629f12d1e0eb1323db01b46e70e4883ee205176 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh
cd
cd gnunet
echo "================START===================" >> regression.txt
uname -a >> regression.txt
svn up >> regression.txt
export GNUNET_PREFIX=$HOME
export PATH=$HOME/bin:$PATH
./bootstrap
./configure --prefix=$HOME --with-extractor=$HOME --with-microhttpd=$HOME
make clean
make install
make check || echo Failed >> regression.txt
make check && echo Success >> regression.txt
echo "================END====================" >> regression.txt
svn commit -m reg regression.txt