]> git.sur5r.net Git - bacula/bacula/commitdiff
tweak btape fill test
authorKern Sibbald <kern@maous.(none)>
Tue, 1 Sep 2009 16:54:58 +0000 (18:54 +0200)
committerKern Sibbald <kern@maous.(none)>
Tue, 1 Sep 2009 16:54:58 +0000 (18:54 +0200)
regress/tests/btape-fill-full-tape

index 6c34094ab8302f16deaca80adf17818f67e6dbb0..f33a89848e4dc62fde9e4f8744d2b130d43f717e 100755 (executable)
@@ -3,24 +3,39 @@
 # Test the fill command in btape
 #
 TestName="btape-fill-full-tape"
-JobName=AutoLabel
+JobName=btape-fill
 . scripts/functions
 
 require_tape_drive
 
-scripts/copy-tape-confs
+scripts/copy-btape-confs
 scripts/cleanup-tape
 
 change_jobname $JobName
 start_test
 
-$bin/btape -c bin/bacula-sd.conf DDS-4 <<END_OF_DATA >${cwd}/tmp/log1.out 2>&1
+#
+#  Increase block size to 262144
+#
+cp ${cwd}/bin/bacula-sd.conf ${cwd}/tmp/1
+sed -e 's%64512%262144%' ${cwd}/tmp/1 >${cwd}/bin/bacula-sd.conf
+
+
+if test "$debug" -eq 1 ; then
+   $bin/btape -c bin/bacula-sd.conf tape <<END_OF_DATA
 fill
 s
 
 quit
 END_OF_DATA
+else
+   $bin/btape -c bin/bacula-sd.conf tape <<END_OF_DATA >${cwd}/tmp/log1.out 2>&1
+fill
+s
 
+quit
+END_OF_DATA
+fi
 
 grep "^The last block on the tape matches\. Test succeeded\." ${cwd}/tmp/log1.out >/dev/null 2>&1
 if [ $? != 0 ] ; then