comparison tests/runtest @ 1596:42fc0d955a0d

Updated runtest to always rebuild libtangobos-partial.a in case of updates. Changed std.stdarg to import ldc.vararg so it has the correct implementation.
author Robert Clipsham <robert@octarineparrot.com>
date Sun, 15 Nov 2009 13:22:02 +0000
parents 628433c343b4
children
comparison
equal deleted inserted replaced
1595:628433c343b4 1596:42fc0d955a0d
5 echo "Usage: `basename $0` <test result file>" 5 echo "Usage: `basename $0` <test result file>"
6 exit 6 exit
7 fi 7 fi
8 TARGETFILE=$1 8 TARGETFILE=$1
9 9
10 # check for libtangobos-partial 10 # build libtangobos-partial
11 if ! [ -f testincludes/libtangobos-partial.a ] ; then 11 echo "Building libtangobos-partial.a"
12 echo "Could not find libtangobos-partial.a, attempting to build." 12 cd testincludes
13 cd testincludes 13 make
14 make 14 cd ..
15 cd ..
16 fi
17 15
18 # check for dstress 16 # check for dstress
19 if ! [ -d dstress ] ; then 17 if ! [ -d dstress ] ; then
20 echo "Testing requires DStress to be checked out into dstress/" 18 echo "Testing requires DStress to be checked out into dstress/"
21 exit 19 exit