Index: tests/fullrun/megatest.config ================================================================== --- tests/fullrun/megatest.config +++ tests/fullrun/megatest.config @@ -202,5 +202,9 @@ # Archives will be organised under these paths like this: # / # Within the archive the data is structured like this: # /// disk0 /tmp/#{getenv USER}/adisk1 + +# Uncomment these to emulate a job queue with a long time (look in bin/sleeprunner for the time) +[jobtools] +launcher sleeprunner Index: utils/installall.sh ================================================================== --- utils/installall.sh +++ utils/installall.sh @@ -140,13 +140,19 @@ fi # $CHICKEN_INSTALL $PROX sqlite3 # IUP versions -CDVER=5.7 -IUPVER=3.8 -IMVER=3.8 +if [[ x$USEOLDIUP == "x" ]];then + CDVER=5.7 + IUPVER=3.8 + IMVER=3.8 +else + CDVER=5.7 + IUPVER=3.8 + IMVER=3.8 +fi if [[ `uname -a | grep x86_64` == "" ]]; then export ARCHSIZE='' else export ARCHSIZE=64_ @@ -161,12 +167,12 @@ mkdir -p $PREFIX/iuplib for a in `echo $files` ; do if ! [[ -e tgz/$a ]] ; then wget http://www.kiatoa.com/matt/iup/$a + mv $a tgz/$a fi - mv $a tgz/$a echo Untarring tgz/$a into $BUILDHOME/lib (cd $PREFIX/lib;tar xfvz $BUILDHOME/tgz/$a;mv include/* ../include) # (cd $DEPLOYTARG;tar xfvz $BUILDHOME/$a) done @@ -196,15 +202,15 @@ # NB// Removed bunch of zmq compiling tricks. Look at older versions of this file if you need to recreate... cd $BUILDHOME -git clone https://bitbucket.org/DerGuteMoritz/zmq/commits/branch/3.2 zmq-3.2 -cd zmq-3.2 -chicken-install - -cd $BUILDHOME +# git clone https://bitbucket.org/DerGuteMoritz/zmq/commits/branch/3.2 zmq-3.2 +# cd zmq-3.2 +# chicken-install +# +# cd $BUILDHOME ## WEBKIT=WebKit-r131972 ## if ! [[ -e ${WEBKIT}.tar.bz2 ]] ; then ## # http://builds.nightly.webkit.org/files/trunk/src/WebKit-r131972.tar.bz2 ## wget http://builds.nightly.webkit.org/files/trunk/src/${WEBKIT}.tar.bz2