From 621cf8308dacff3a2f3418bd07d7c21503543528 Mon Sep 17 00:00:00 2001 From: Eric Bollengier Date: Wed, 9 Sep 2009 16:44:52 +0200 Subject: [PATCH] Update the new exclude-dir-test with multiple Include {} section and different Exclude Dir Contain directive. --- regress/tests/exclude-dir-test | 46 ++++++++++++++++++++++++++++++++-- 1 file changed, 44 insertions(+), 2 deletions(-) diff --git a/regress/tests/exclude-dir-test b/regress/tests/exclude-dir-test index 7cea3dc7c2..6cfacc7057 100755 --- a/regress/tests/exclude-dir-test +++ b/regress/tests/exclude-dir-test @@ -10,8 +10,30 @@ JobName=exclude-dir cwd=`pwd` scripts/cleanup scripts/copy-test-confs -echo "${cwd}/build" >${cwd}/tmp/file-list -sed 's/Include {/Include { Exclude Dir Containing = ".nobkp"/' $conf/bacula-dir.conf > $tmp/1 +cat >> $conf/bacula-dir.conf <$tmp/1 cp -f $tmp/1 $conf/bacula-dir.conf change_jobname CompressedTest $JobName start_test @@ -55,4 +77,24 @@ if [ $? = 0 ]; then bstat=2 fi +# build/po is included 2 times with a different exclude file +# we shouldn't see scripts and bin +nb=$(grep -e 'build/po/fr.po$' $tmp/log3.out | wc -l) +if [ $nb != 2 ]; then + print_debug "ERROR: Should see fr.po two times" + bstat=2 +fi + +grep $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 +if [ $? = 0 ]; then + print_debug "ERROR: Should not $conf in estimate output" + bstat=2 +fi + end_test -- 2.39.5