Mercurial > dropbear
comparison libtomcrypt/testbuild.sh @ 389:5ff8218bcee9
propagate from branch 'au.asn.ucc.matt.ltm.dropbear' (head 2af95f00ebd5bb7a28b3817db1218442c935388e)
to branch 'au.asn.ucc.matt.dropbear' (head ecd779509ef23a8cdf64888904fc9b31d78aa933)
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Thu, 11 Jan 2007 03:14:55 +0000 |
parents | 0cbe8f6dbf9e |
children | 6dba84798cd5 |
comparison
equal
deleted
inserted
replaced
388:fb54020f78e1 | 389:5ff8218bcee9 |
---|---|
1 #!/bin/bash | |
2 echo "$1 (Build Only, $2, $3)..." | |
3 make clean 1>/dev/null 2>/dev/null | |
4 echo -n "building..." | |
5 touch testok.txt | |
6 CFLAGS="$2 $CFLAGS $4" EXTRALIBS="$5" make -f $3 test tv_gen 1>gcc_1.txt 2>gcc_2.txt || (echo "build $1 failed see gcc_2.txt for more information" && cat gcc_2.txt && rm -f testok.txt && exit 1) | |
7 if find testok.txt -type f 1>/dev/null 2>/dev/null ; then | |
8 echo "successful" | |
9 exit 0 | |
10 fi | |
11 exit 1 |