From: Kern Sibbald Date: Sun, 4 Jan 2009 06:06:04 +0000 (+0000) Subject: Update X-Git-Tag: Release-2.4.4^2 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=ddcff0991f582e497f847c7df59fea3e6a70eb78;p=bacula%2Fbacula Update git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/branches/Branch-2.4@8304 91ce42f0-d328-0410-95d8-f526ca767f89 --- diff --git a/regress/debug b/regress/debug new file mode 100755 index 0000000000..cad6c9a2aa --- /dev/null +++ b/regress/debug @@ -0,0 +1,12 @@ +#!/bin/sh +# Set regression debug listing on/off +# This has to be sourced to work right +# +if test $1 = "on" ; then + REGRESS_DEBUG=1 + echo "Setting debug on" +else + REGRESS_DEBUG=0 + echo "Setting debug off" +fi +export REGRESS_DEBUG diff --git a/regress/do_disk_no_setup b/regress/do_disk_no_setup new file mode 100755 index 0000000000..61ff1d5089 --- /dev/null +++ b/regress/do_disk_no_setup @@ -0,0 +1,14 @@ +#!/bin/sh +echo " " >test.out +cat build/config.out >>test.out +echo " " >>test.out +echo "Test results" >>test.out +echo " " >>test.out +./starttime +nice ./all-non-root-tests +echo " " +echo "End do_file tests" +echo "End do_file tests" >>test.out +scripts/cleanup +cat test.out +./endtime diff --git a/regress/experimental-disk b/regress/experimental-disk index fb91994e97..b65f07f677 100755 --- a/regress/experimental-disk +++ b/regress/experimental-disk @@ -10,6 +10,7 @@ REGRESS_DEBUG=1 export REGRESS_DEBUG svn update scripts/config_dart +make setup nice ctest -D Experimental -R "^disk:" rtn=$? i=0