X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=regress%2Ftests%2Fbsr-opt-test;h=e2bf556beefc4c97e30f32c07db12eb883d8cbab;hb=a752597b2a79ba0f2dfb0ec6b6da8403464e092b;hp=74002e23a4b3433338d6abe6f9569fd0dc0a7085;hpb=01f68368523775739584ab5f707e785e99c70f4a;p=bacula%2Fbacula diff --git a/regress/tests/bsr-opt-test b/regress/tests/bsr-opt-test index 74002e23a4..e2bf556bee 100755 --- a/regress/tests/bsr-opt-test +++ b/regress/tests/bsr-opt-test @@ -6,6 +6,13 @@ # the other volume is not used. I.e. bsr optimization # works. # +debug=0 +if test "$debug" -eq 1 ; then + out="tee" +else + out="output" +fi + cwd=`pwd` scripts/copy-test-confs scripts/cleanup @@ -13,15 +20,14 @@ echo "${cwd}/build" >/tmp/file-list echo " " echo " " -echo " === Starting bsr-opt-test ===" -echo " === Starting bsr-opt-test ===" >working/log +echo " === Starting bsr-opt-test at `date +%R:%S` ===" +echo " === Starting bsr-opt-test at `date +%R:%S` ===" >working/log echo " " -bin/bacula start 2>&1 >/dev/null -bin/bconsole -c bin/bconsole.conf <tmp/bconcmds +@$out /dev/null messages -@output tmp/log1.out +@$out tmp/log1.out label storage=File1 volume=TestVolume001 label storage=File1 volume=TestVolume002 update Volume=TestVolume001 MaxVolBytes=3000000 @@ -31,8 +37,8 @@ messages @# @# now do a restore @# -@output tmp/log2.out -restore where=${cwd}/tmp/bacula-restores select storage=File1 +@$out tmp/log2.out +restore bootstrap=${cwd}/working/restore.bsr where=${cwd}/tmp/bacula-restores select storage=File1 unmark * cd ${cwd}/build/src/cats mark * @@ -41,9 +47,18 @@ done yes wait messages -@output +@$out quit END_OF_DATA + +if test "$debug" -eq 1 ; then + bin/bacula start + cat tmp/bconcmds | bin/bconsole -c bin/bconsole.conf +else + bin/bacula start 2>&1 >/dev/null + cat tmp/bconcmds | bin/bconsole -c bin/bconsole.conf 2>&1 >/dev/null +fi + scripts/check_for_zombie_jobs storage=File1 bin/bacula stop 2>&1 >/dev/null # @@ -53,9 +68,9 @@ bin/bacula stop 2>&1 >/dev/null # grep TestVolume002 working/restore.bsr 2>&1 >/dev/null bsrstat=$? -grep "^Termination: *Backup OK" tmp/log1.out 2>&1 >/dev/null +grep "^ Termination: *Backup OK" tmp/log1.out 2>&1 >/dev/null bstat=$? -grep "^Termination: *Restore OK" tmp/log2.out 2>&1 >/dev/null +grep "^ Termination: *Restore OK" tmp/log2.out 2>&1 >/dev/null rstat=$? diff -r build/src/cats tmp/bacula-restores${cwd}/build/src/cats 2>&1 >/dev/null if [ $? != 0 -o $bsrstat != 0 -o $bstat != 0 -o $rstat != 0 ] ; then