]> git.sur5r.net Git - bacula/bacula/blobdiff - regress/nightly-all
crypto: convert EVP_MD_CTX + EVP_CIPHER_CTX to OpenSSL 1.1
[bacula/bacula] / regress / nightly-all
index fef67ec18a7e028cbbddf5cf4dec8d9cd5baa248..28fedae9452b370c80666ee95736c3f86e6b5a72 100755 (executable)
@@ -1,11 +1,34 @@
 #!/bin/sh
+#
+# Copyright (C) 2000-2015 Kern Sibbald
+# License: BSD 2-Clause; see file LICENSE-FOSS
+#
+
 #
 # run both the disk and the tape based regression tests.
 #
 # Include full output
-save_debug=${REGRESS_DEBUG}
+LANG=C
+echo "Begin nightly-all `date`"
 REGRESS_DEBUG=1
 export REGRESS_DEBUG
+rm -rf Testing
+rm -f dumps/*
+git pull
+make distclean
 scripts/config_dart
-ctest -D Nightly -R "all-non-root.*"
-REGRESS_DEBUG=${save_debug}
+nice ctest -D Nightly -R "^(disk|tape|changer):"
+rtn=$?
+i=0
+while [ $i -le 5 ]; do
+   if [ $rtn = 0 ] || [ "$rtn" = "8" ] ; then
+      break;
+   fi
+   echo "Submit failed, waiting 5 mins"
+   sleep 300
+   echo "ctest failed re-running Submit"
+   ctest -D NightlySubmit
+   rtn=$?
+   i=`expr $i + 1`
+done
+echo "End nightly-all `date`"