X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=regress%2Ftests%2Fsix-vol-test;h=c5a99736ead57291f380295bc61c950849478f91;hb=d6918a9fcb56c245fa72cf458cfef73f3b4d12d9;hp=1c369e0c254bf9e58c47feaf08a342c14ed51816;hpb=2553d1905ea8a76cd9d9a6a0a8c6e48c8d8c0dab;p=bacula%2Fbacula diff --git a/regress/tests/six-vol-test b/regress/tests/six-vol-test index 1c369e0c25..c5a99736ea 100755 --- a/regress/tests/six-vol-test +++ b/regress/tests/six-vol-test @@ -3,9 +3,14 @@ # Create a 60MB file with random bytes. Back it up to 6 Volumes # each constrained to 10MB using the automatic labeling feature. # + +if test ! -e /dev/urandom ; then + echo "No random device. Test skipped.\n" + exit 0 +fi cwd=`pwd` scripts/copy-testa-confs -rm -rf tmp/SmallVols* tmp/bacula-restores tmp/largefile +scripts/cleanup echo "${cwd}/tmp/largefile" >/tmp/file-list # Create 56MB file with random data echo "Creating a 56MB file with random data ..." @@ -17,13 +22,15 @@ bin/make_sqlite_tables echo " " echo " " -echo " === Starting two-vol-test ===" +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 <&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 -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 ===== " echo " ===== six-vol-test OK ===== " >>test.out - rm -rf tmp/bacula-restores tmp/SmallVols* tmp/largefile + scripts/cleanup fi