]> git.sur5r.net Git - bacula/bacula/commitdiff
Update
authorKern Sibbald <kern@sibbald.com>
Sat, 13 Sep 2008 18:34:20 +0000 (18:34 +0000)
committerKern Sibbald <kern@sibbald.com>
Sat, 13 Sep 2008 18:34:20 +0000 (18:34 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@7590 91ce42f0-d328-0410-95d8-f526ca767f89

regress/debug [new file with mode: 0755]

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