]> git.sur5r.net Git - bacula/bacula/commitdiff
Update
authorKern Sibbald <kern@sibbald.com>
Sun, 4 Jan 2009 06:06:04 +0000 (06:06 +0000)
committerKern Sibbald <kern@sibbald.com>
Sun, 4 Jan 2009 06:06:04 +0000 (06:06 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/branches/Branch-2.4@8304 91ce42f0-d328-0410-95d8-f526ca767f89

regress/debug [new file with mode: 0755]
regress/do_disk_no_setup [new file with mode: 0755]
regress/experimental-disk

diff --git a/regress/debug b/regress/debug
new file mode 100755 (executable)
index 0000000..cad6c9a
--- /dev/null
@@ -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 (executable)
index 0000000..61ff1d5
--- /dev/null
@@ -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
index fb91994e97f8b1c41c06b321136dfd9964081b4b..b65f07f6778964aab3aaf68918b220d32d360899 100755 (executable)
@@ -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