]> git.sur5r.net Git - bacula/bacula/blobdiff - regress/tests/six-vol-test
Change test name
[bacula/bacula] / regress / tests / six-vol-test
index d1a012e26d0a429dceeaba74f5881c93b7aa27f6..c5a99736ead57291f380295bc61c950849478f91 100755 (executable)
@@ -26,10 +26,11 @@ echo " === Starting six-vol-test  ==="
 echo " === Starting six-vol-test  ===" >>working/log
 echo " "
 
-bin/bacula start
+bin/bacula start 2>&1 >/dev/null
 bin/console -c bin/console.conf <<END_OF_DATA
+@output /dev/null
 messages
-@output
+@output tmp/log1.out
 run job=MultiVol storage=File
 yes
 wait
@@ -37,21 +38,27 @@ messages
 @# 
 @# now do a restore
 @#
+@output tmp/log2.out
 restore where=${cwd}/tmp/bacula-restores
 5
 done
 yes
 wait
 messages
+@output
 quit
 END_OF_DATA
-bin/bacula stop
+bin/bacula stop  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
+rstat=$?
 diff tmp/largefile  tmp/bacula-restores${cwd}/tmp/largefile
-if [ $? != 0 ] ; then
+if [ $? != 0 -o $bstat != 0 -o $rstat != 0 ] ; then
    echo " "
    echo " "
-   echo "  ===== six-vol-test Bacula source failed!!! ===== "
-   echo "  ===== six-vol-test failed!!! ===== " >>test.out
+   echo "  !!!!! six-vol-test Bacula source failed!!! !!!!! "
+   echo "  !!!!! six-vol-test failed!!! !!!!! " >>test.out
    echo " "
 else
    echo "  ===== six-vol-test Bacula source OK ===== "