From 1d08d732b85548e815bbce99c6772d2ae0320229 Mon Sep 17 00:00:00 2001 From: Kern Sibbald Date: Thu, 20 Mar 2008 09:31:40 +0000 Subject: [PATCH] Update add new tape tests git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@6648 91ce42f0-d328-0410-95d8-f526ca767f89 --- regress/experimental-tape | 15 +++++++++++++++ regress/nightly-tape | 15 +++++++++++++++ 2 files changed, 30 insertions(+) create mode 100755 regress/experimental-tape create mode 100755 regress/nightly-tape diff --git a/regress/experimental-tape b/regress/experimental-tape new file mode 100755 index 0000000000..550328abaf --- /dev/null +++ b/regress/experimental-tape @@ -0,0 +1,15 @@ +#!/bin/sh +# +# test only the disk based regression scripts +# +# Include full output +save_debug=${REGRESS_DEBUG} +REGRESS_DEBUG=1 +export REGRESS_DEBUG +scripts/config_dart +nice ctest -D Experimental -R "all-non-root-tape:" +if [ $? != 0 ] ; then + echo "ctest failed re-running Submit" + ctest -D NightlySubmit +fi +REGRESS_DEBUG=${save_debug} diff --git a/regress/nightly-tape b/regress/nightly-tape new file mode 100755 index 0000000000..cf136f533f --- /dev/null +++ b/regress/nightly-tape @@ -0,0 +1,15 @@ +#!/bin/sh +# +# test only the disk based regression scripts +# +# Include full output +save_debug=${REGRESS_DEBUG} +REGRESS_DEBUG=1 +export REGRESS_DEBUG +scripts/config_dart +nice ctest -D Nightly -R "all-non-root-tape:" +if [ $? != 0 ] ; then + echo "ctest failed re-running Submit" + ctest -D NightlySubmit +fi +REGRESS_DEBUG=${save_debug} -- 2.39.5