From: Michal Rakowski Date: Tue, 23 Nov 2021 14:44:35 +0000 (+0100) Subject: regress: fix exclude-dir-test X-Git-Tag: Beta-15.0.0~758 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=81294aad0cfe4abcc462409a0d371391277f442a;p=thirdparty%2Fbacula.git regress: fix exclude-dir-test --- diff --git a/regress/tests/exclude-dir-test b/regress/tests/exclude-dir-test index d8432d3cb..f4e0fdd04 100755 --- a/regress/tests/exclude-dir-test +++ b/regress/tests/exclude-dir-test @@ -77,7 +77,7 @@ check_two_logs rm -rf ${cwd}/build/src/xxtestdir check_restore_diff -grep '/xxtestdir' $tmp/log3.out > /dev/null +grep 'Skipping ignored directory /xxtestdir' $tmp/log3.out > /dev/null if [ $? = 0 ]; then print_debug "ERROR: Should not see xxtestdir in estimate output" bstat=2 @@ -91,13 +91,13 @@ if [ $nb != 2 ]; then bstat=2 fi -grep $rscripts $tmp/log3.out > /dev/null +grep 'Skipping ignored directory $rscripts' $tmp/log3.out > /dev/null if [ $? = 0 ]; then print_debug "ERROR: Should not $rscripts in estimate output" bstat=2 fi -grep $conf $tmp/log3.out > /dev/null +grep 'Skipping ignored directory $conf' $tmp/log3.out > /dev/null if [ $? = 0 ]; then print_debug "ERROR: Should not $conf in estimate output" bstat=2