comparison tests/runtest @ 1595:628433c343b4

Fixed DStress tests nocompile/c/{const_32_B.d,const_32_C.d}. Updated the runtest script to build libtangobos-partial.a if it hasn't already been built. Added in signbit() and va_arg!()() to libtangobos-partial.a so more of the phobos dependent DStress tests pass.
author Robert Clipsham <robert@octarineparrot.com>
date Sun, 08 Nov 2009 16:16:17 +0000
parents 6f5e40205f2a
children 42fc0d955a0d
comparison
equal deleted inserted replaced
1594:9f7151d890ff 1595:628433c343b4
4 if [ -z "$1" ] ; then 4 if [ -z "$1" ] ; then
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
10 # check for libtangobos-partial
11 if ! [ -f testincludes/libtangobos-partial.a ] ; then
12 echo "Could not find libtangobos-partial.a, attempting to build."
13 cd testincludes
14 make
15 cd ..
16 fi
9 17
10 # check for dstress 18 # check for dstress
11 if ! [ -d dstress ] ; then 19 if ! [ -d dstress ] ; then
12 echo "Testing requires DStress to be checked out into dstress/" 20 echo "Testing requires DStress to be checked out into dstress/"
13 exit 21 exit