]> git.ipfire.org Git - thirdparty/bacula.git/commitdiff
Remove debugging information
authorDan Langille <dan@langille.org>
Sun, 10 Oct 2021 20:14:51 +0000 (20:14 +0000)
committerEric Bollengier <eric@baculasystems.com>
Tue, 12 Oct 2021 08:33:52 +0000 (10:33 +0200)
regress/tests/runscript-test

index a3f7bc69db32ddd5f5d7aee90d0bfebceb14b0fd..48f1b3dbba1c8ccf6a04a721c0393ccea32ec62a 100755 (executable)
@@ -110,22 +110,16 @@ else
    bstat=1
 fi
 
-echo ' testing a'
 grep 'shell command: run ClientBeforeJob "/bin/false RUN_FD_FAILED1"' ${cwd}/tmp/RUN_FD_FAILED.log >/dev/null
 a=$?
-echo ' testing b'
 grep 'shell command: run ClientBeforeJob "/bin/false RUN_FD_FAILED2"' ${cwd}/tmp/RUN_FD_FAILED.log >/dev/null
 b=$?
-echo ' testing c'
 grep 'shell command: run ClientBeforeJob "/bin/false RUN_FD_FAILED3"' ${cwd}/tmp/RUN_FD_FAILED.log >/dev/null
 c=$?
-echo ' testing d'
 grep 'shell command: run AfterJob "/bin/echo RunAfterFailedJob"' ${cwd}/tmp/RUN_FD_FAILED.log >/dev/null
 d=$?
-echo ' testing e'
 grep 'touching' ${cwd}/tmp/RUN_FD_FAILED.log >/dev/null
 e=$?
-echo ' testing f'
 grep '\*\*\* Backup Error \*\*\*' ${cwd}/tmp/RUN_FD_FAILED.log >/dev/null
 f=$?
 if [ $a = 0 -a $b = 0 -a $c = 0 -a $d = 0 -a $e = 0 -a $f = 0 ]