]> git.sur5r.net Git - bacula/bacula/commitdiff
Update tests with new debug code
authorKern Sibbald <kern@sibbald.com>
Sat, 20 Aug 2005 13:45:11 +0000 (13:45 +0000)
committerKern Sibbald <kern@sibbald.com>
Sat, 20 Aug 2005 13:45:11 +0000 (13:45 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@2345 91ce42f0-d328-0410-95d8-f526ca767f89

regress/tests/weird-files-test
regress/tests/weird-files2-test

index 0a9bd1a908d61546c465ca7af23e0fa62b1242a1..c8d10aea70306d0fa66e4f66178dabc5095b98bf 100755 (executable)
@@ -3,6 +3,12 @@
 # Run a simple backup of the Bacula build directory
 #   then restore it.
 #
+debug=0
+if test "$debug" -eq 1 ; then
+  out="tee"
+else
+  out="output"
+fi
 if test ! -d weird-files ; then
    echo " "
    echo "Weird files not configured. Test not run."
@@ -26,11 +32,10 @@ echo " === Starting weird filenames test at `date +%R:%S` ==="
 echo " === Starting weird filenames test at `date +%R:%S` ===" >>working/log
 echo " "
 
-bin/bacula start 2>&1 >/dev/null
-bin/bconsole -c bin/bconsole.conf <<END_OF_DATA 2>&1 >/dev/null
-@tee /dev/null
+cat <<END_OF_DATA >tmp/bconcmds
+@$out /dev/null
 messages
-@tee tmp/log1.out
+@$out tmp/log1.out
 label storage=File
 TestVolume001
 run job=NightlySave
@@ -40,7 +45,7 @@ messages
 @# 
 @# now do a restore
 @#
-@tee tmp/log2.out
+@$out tmp/log2.out
 restore where=${cwd}/tmp/bacula-restores select storage=File
 unmark *
 mark *
@@ -48,9 +53,16 @@ done
 yes
 wait
 messages
-@tee
+@$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=File 
 bin/bacula stop 2>&1 >/dev/null
 ${cwd}/bin/testls weird-files | sort >${cwd}/tmp/original
index 9929d99eafd997ad9afc2fac86396ac56443a08a..fe5a50c97275346afbed2b6347bde25ff1a9de6f 100755 (executable)
@@ -3,6 +3,13 @@
 # Run a simple backup of the Bacula build directory
 #   then restore it.
 #
+debug=0
+if test "$debug" -eq 1 ; then
+  out="tee"
+else
+  out="output"
+fi
+
 if test ! -d weird-files ; then
    echo " "
    echo "weird files not configured. Test not run."
@@ -22,19 +29,25 @@ echo " === Starting weird-file2 test at `date +%R:%S` ===" >>working/log
 echo " "
 
 bin/testls weird-files2 >${cwd}/tmp/original
-bin/bacula start
-# bin/bacula start 2>&1 >/dev/null
-bin/bconsole -c bin/bconsole.conf <<END_OF_DATA 2>&1 >/dev/null
-@output /dev/null
+
+cat <<END_OF_DATA >tmp/bconcmds
+@$out /dev/null
 messages
-@output tmp/log1.out
+@$out tmp/log1.out
 label storage=File volume=TestVolume001
 run job=NightlySave 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=File 
 #
 # Now mess up the a hard link, and a soft link
@@ -45,13 +58,13 @@ ln hard-file3 hard-file2
 rm -f soft-file2
 ln -s soft-file3 soft-file2
 cd ${cwd}
-bin/bconsole -c bin/bconsole.conf <<END_OF_DATA 2>&1 >/dev/null
-@output /dev/null
+cat <<END_OF_DATA >tmp/bconcmds
+@$out /dev/null
 messages
 @# 
 @# now do a restore
 @#
-@output tmp/log2.out
+@$out tmp/log2.out
 restore where= storage=File
 5
 unmark *
@@ -60,9 +73,15 @@ done
 yes
 wait
 messages
-@output
+@$out
 quit
 END_OF_DATA
+
+if test "$debug" -eq 1 ; then
+  cat tmp/bconcmds | bin/bconsole -c bin/bconsole.conf
+else
+  cat tmp/bconcmds | bin/bconsole -c bin/bconsole.conf  2>&1 >/dev/null
+fi
 scripts/check_for_zombie_jobs storage=File 
 bin/bacula stop 2>&1 >/dev/null
 bin/testls weird-files2 >${cwd}/tmp/restored