]> git.sur5r.net Git - bacula/bacula/blobdiff - regress/nightly-all
Update ctest readme
[bacula/bacula] / regress / nightly-all
index b4395a3a2ba8e960b39715d9a661f3c5f055c6e7..00e1059339fc6de67617f2aaa07a18015c52c727 100755 (executable)
@@ -1,2 +1,15 @@
 #!/bin/sh
-ctest -D Nightly -R all-non-root
+#
+# run both the disk and the tape based regression tests.
+#
+# Include full output
+save_debug=${REGRESS_DEBUG}
+REGRESS_DEBUG=1
+export REGRESS_DEBUG
+scripts/config_dart
+nice ctest -D Nightly -R "all-non-root.*"
+if [ $? != 0 ] ; then
+   echo "ctest failed re-running Submit"
+   ctest -D NightlySubmit
+fi
+REGRESS_DEBUG=${save_debug}