From 5950460264f50fb22890851062d52cd46432d518 Mon Sep 17 00:00:00 2001 From: Eric Bollengier Date: Wed, 30 Sep 2009 14:47:28 +0200 Subject: [PATCH] regress: Add ERROR: string when displaying error messages --- regress/tests/accurate-test | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/regress/tests/accurate-test b/regress/tests/accurate-test index f4fbdbde46..cab181c7f3 100755 --- a/regress/tests/accurate-test +++ b/regress/tests/accurate-test @@ -166,6 +166,7 @@ p Check with bls $bin/bls -c $conf/bacula-sd.conf -V 'TestVolume001' FileStorage > $tmp/bls.out grep -- '----' $tmp/bls.out | grep xxx > /dev/null if [ $? != 0 ] ; then + print_debug "ERROR: Should find deleted files into $tmp/bls.out" bstat=2 fi @@ -412,13 +413,13 @@ run_bconsole grep yyy ${cwd}/tmp/log3.out > /dev/null if [ $? != 0 ] ; then - print_debug "Can't find yyy file into 'list files' output (${cwd}/tmp/log3.out)" + print_debug "ERROR: Can't find yyy file into 'list files' output (${cwd}/tmp/log3.out)" dstat=2 fi -if grep zzz ${cwd}/tmp/log3.out > /dev/null -then - print_debug "Can't find zzz file into 'list files' output (${cwd}/tmp/log3.out)" +grep zzz ${cwd}/tmp/log3.out > /dev/null +if [ $? = 0 ] ; then + print_debug "ERROR: Should not find zzz file into 'list files' output (${cwd}/tmp/log3.out)" dstat=2 fi -- 2.39.5