]> git.sur5r.net Git - bacula/bacula/commitdiff
updates
authorKern Sibbald <kern@sibbald.com>
Sun, 15 Feb 2009 07:53:18 +0000 (07:53 +0000)
committerKern Sibbald <kern@sibbald.com>
Sun, 15 Feb 2009 07:53:18 +0000 (07:53 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@8451 91ce42f0-d328-0410-95d8-f526ca767f89

regress/tests/copy-volume-test
regress/tests/recycle-test

index 2200c90d1144243532e3f7fddcfe02907a6b88ea..d272c97cd4c7b8664fa7e753b16b63312e53667d 100755 (executable)
@@ -168,22 +168,22 @@ stop_bacula
 
 get_mig_info 1 ${cwd}/tmp/log11.out
 
-if [ -z "$RET" -o "$RET" -eq 0 ]; then
+if [ -z "$RET" -o $RET -eq 0 ]; then
     bstat=2
     print_debug "The first job must have been copied"
 fi
 
 get_mig_info 2 ${cwd}/tmp/log11.out
 
-if [ -z "$RET" -o "$RET" -ne 0 ]; then
+if [ -z "$RET" -o $RET -ne 0 ]; then
     bstat=2
-    print_debug "The second job have no files, it can't have been copied"
+    print_debug "The second job has no files, it can't have been copied"
 fi
 
 JOBID=`awk -F= '/Job queued. JobId/ {if(!f){print $2; f=1;}}' ${cwd}/tmp/log4.out`
 get_mig_info $JOBID ${cwd}/tmp/log4.out
 
-if [ -z "$RET" -o "$RET" -eq 0 ]; then
+if [ -z "$RET" -o $RET -eq 0 ]; then
     bstat=2
     print_debug "The new incremental job must have been copied"
 fi
index 066217fbc329db918c7241f6ddd4e84e9620e473..701a0083e78fd0f5b7fad47cba4d2c7ac07981e9 100755 (executable)
@@ -5,6 +5,11 @@
 #   volumes to be recycled, and cycling through the volumes
 #   twice. Tests maxvoljobs and volretention.
 #
+# Note, this test is a bit tricky, in that if you get too
+#   much data in the regress/build directory, the test will
+#   fail because it will run out of enough volumes to backup
+#   all the data.
+#
 TestName="recycle-test"
 JobName=Recycle
 . scripts/functions