]> git.sur5r.net Git - bacula/bacula/commitdiff
ebl fix copy-volume-test
authorEric Bollengier <eric@eb.homelinux.org>
Wed, 1 Jul 2009 18:26:12 +0000 (18:26 +0000)
committerEric Bollengier <eric@eb.homelinux.org>
Wed, 1 Jul 2009 18:26:12 +0000 (18:26 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@8933 91ce42f0-d328-0410-95d8-f526ca767f89

regress/tests/copy-volume-test

index d272c97cd4c7b8664fa7e753b16b63312e53667d..106aa76492e92f9792b8f14f6a9e71df5941b234 100755 (executable)
@@ -168,14 +168,14 @@ stop_bacula
 
 get_mig_info 1 ${cwd}/tmp/log11.out
 
-if [ -z "$RET" -o $RET -eq 0 ]; then
+if [ -z "$RET" -o "$RET" = 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 [ -n "$RET" ]; then
     bstat=2
     print_debug "The second job has no files, it can't have been copied"
 fi
@@ -183,7 +183,7 @@ 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" = 0 ]; then
     bstat=2
     print_debug "The new incremental job must have been copied"
 fi