From: Thierry Parmentelat Date: Mon, 31 Mar 2008 11:30:44 +0000 (+0000) Subject: fix X-Git-Tag: 4.2-rc2~74 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=b13fb81ee1f7d1d24f79bab44e873bfa8e922dfd;p=build.git fix --- diff --git a/vbuild-nightly.sh b/vbuild-nightly.sh index 88796ca0..ed9a3e24 100755 --- a/vbuild-nightly.sh +++ b/vbuild-nightly.sh @@ -177,7 +177,11 @@ function runtest () { # check it out ssh ${TESTBOXSSH} svn co ${TESTSVNPATH} ${testdir} # invoke test on testbox - pass url and build url - so the tests can use vtest-init-vserver.sh - ssh 2>&1 ${TESTBOXSSH} python -u ${testdir}/runtest --build ${SVNPATH} --url ${url} --config "${TESTCONFIG}" --all + configs="" + for config in ${TESTCONFIG} ; do + configs="$configs --config $config" + done + ssh 2>&1 ${TESTBOXSSH} python -u ${testdir}/runtest --build ${SVNPATH} --url ${url} $configs --all if [ "$?" != 0 ] ; then failure