From: Dan Langille Date: Sun, 10 Oct 2021 20:14:51 +0000 (+0000) Subject: Remove debugging information X-Git-Tag: Release-11.0.6~68 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=704f9d9bb75fdc64b7d2ae298587adf6556d06ae;p=thirdparty%2Fbacula.git Remove debugging information --- diff --git a/regress/tests/runscript-test b/regress/tests/runscript-test index a3f7bc69d..48f1b3dbb 100755 --- a/regress/tests/runscript-test +++ b/regress/tests/runscript-test @@ -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 ]