X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=regress%2Ftests%2Fregexwhere-test;h=6ab02e2cd6f90c25993921cd2dc32fb5fced75a7;hb=b76f7bc37b0fd454157e383cdf8e31672726dce3;hp=eaaa3fe6faf16e9986c0cc0545b269e78c99e774;hpb=50ec9f3740f3d36fa77f2cecb5f28efc06061ce7;p=bacula%2Fbacula diff --git a/regress/tests/regexwhere-test b/regress/tests/regexwhere-test index eaaa3fe6fa..6ab02e2cd6 100755 --- a/regress/tests/regexwhere-test +++ b/regress/tests/regexwhere-test @@ -102,7 +102,7 @@ wait messages @################################## @$out tmp/RUN_JobG -restore strip_prefix="${cwd}" add_prefix="/tmp/bacula-restore" +restore strip_prefix="${cwd}" add_prefix="${tmp}/bacula-restore.$$" 5 cd ${cwd}/build/po m *.po @@ -180,8 +180,10 @@ export bstat export rstat J=JobA -if grep -q "Restore OK" tmp/RUN_$J && - grep -q "${cwd}/build/po/fr.old.po" tmp/RUN_$J +grep "Restore OK" tmp/RUN_$J > /dev/null && \ +grep "${cwd}/build/po/fr.old.po" tmp/RUN_$J > /dev/null + +if [ $? = 0 ] then [ "$debug" = 1 ] && echo $J ok else @@ -190,9 +192,10 @@ else fi J=JobB +grep "Restore OK" tmp/RUN_$J > /dev/null && \ +grep "tmp/bacula-restore${cwd}/po/fr.po.old" tmp/RUN_$J > /dev/null # $cwd begins with / -if grep -q "Restore OK" tmp/RUN_$J && - grep -q "tmp/bacula-restore${cwd}/po/fr.po.old" tmp/RUN_$J +if [ $? = 0 ] then [ "$debug" = 1 ] && echo $J ok else @@ -201,8 +204,9 @@ else fi J=JobC -if grep -q "Restore OK" tmp/RUN_$J && - grep -q "tmp/bacula-restore${cwd}/build/po/fr.po" tmp/RUN_$J +grep "Restore OK" tmp/RUN_$J > /dev/null && \ +grep "tmp/bacula-restore${cwd}/build/po/fr.po" tmp/RUN_$J > /dev/null +if [ $? = 0 ] then [ "$debug" = 1 ] && echo $J ok else @@ -211,7 +215,8 @@ else fi J=JobD -if grep -q "Restore Error" tmp/RUN_$J +grep "Restore Error" tmp/RUN_$J > /dev/null +if [ $? = 0 ] then [ "$debug" = 1 ] && echo $J ok else @@ -220,8 +225,9 @@ else fi J=JobE -if grep -q "Restore OK" tmp/RUN_$J && - grep -q "${cwd}/tmp/fr.po" tmp/RUN_$J +grep "Restore OK" tmp/RUN_$J > /dev/null && \ +grep "${cwd}/tmp/fr.po" tmp/RUN_$J > /dev/null +if [ $? = 0 ] then [ "$debug" = 1 ] && echo $J ok else @@ -230,8 +236,9 @@ else fi J=JobF -if grep -q "Restore OK" tmp/RUN_$J && - grep -q "${cwd}/build/po/fr.po" tmp/RUN_$J +grep "Restore OK" tmp/RUN_$J > /dev/null && \ +grep "${cwd}/build/po/fr.po" tmp/RUN_$J > /dev/null +if [ $? = 0 ] then [ "$debug" = 1 ] && echo $J ok else @@ -240,18 +247,21 @@ else fi J=JobG -if grep -q "Restore OK" tmp/RUN_$J && - grep -q "tmp/bacula-restore/build/po/fr.po" tmp/RUN_$J +grep "Restore OK" tmp/RUN_$J > /dev/null && \ +grep "tmp/bacula-restore.$$/build/po/fr.po" tmp/RUN_$J > /dev/null +if [ $? = 0 ] then [ "$debug" = 1 ] && echo $J ok else echo "$J in error" rstat=1 fi +rm -rf ${tmp}/bacula-restore.$$ J=JobH -if grep -q "Restore OK" tmp/RUN_$J && - grep -q "${cwd}/build/po/fr.po.old" tmp/RUN_$J +grep "Restore OK" tmp/RUN_$J > /dev/null && \ +grep "${cwd}/build/po/fr.po.old" tmp/RUN_$J > /dev/null +if [ $? = 0 ] then [ "$debug" = 1 ] && echo $J ok else @@ -260,8 +270,9 @@ else fi J=JobI -if grep -q "Restore OK" tmp/RUN_$J && - grep -q "${cwd}/build/po/fr.po.old" tmp/RUN_$J +grep "Restore OK" tmp/RUN_$J > /dev/null && \ +grep "${cwd}/build/po/fr.po.old" tmp/RUN_$J > /dev/null +if [ $? = 0 ] then [ "$debug" = 1 ] && echo $J ok else @@ -271,10 +282,11 @@ fi J=JobJ -if grep -q "Restore OK" tmp/RUN_$J && - grep -q "/etc/passwd.old" tmp/RUN_$J && - grep -q -e "Where: *tmp/bacula-restore-it" tmp/RUN_$J && - grep -q "${cwd}/build/po/fr.po.old" tmp/RUN_$J +grep "Restore OK" tmp/RUN_$J > /dev/null && \ +grep "/etc/passwd.old" tmp/RUN_$J > /dev/null && \ +grep "Where: *tmp/bacula-restore-it" tmp/RUN_$J > /dev/null && \ +grep "${cwd}/build/po/fr.po.old" tmp/RUN_$J > /dev/null +if [ $? = 0 ] then [ "$debug" = 1 ] && echo $J ok else @@ -289,7 +301,8 @@ find ${cwd}/build > tmp/list sed -e 's/[Rr][Ee][Aa][Dd][Mm][Ee]/readme/' -e 's/\([ch]\)$/.old.\1/' tmp/list > tmp/list.sed ./build/src/tools/bregtest -s -f tmp/list -e '/readme/readme/i,/([ch])$/.old.$1/' > tmp/list.bsed -if diff tmp/list.bsed tmp/list.sed >/dev/null 2>&1 +diff tmp/list.bsed tmp/list.sed >/dev/null 2>&1 +if [ $? = 0 ] then [ "$debug" = 1 ] && echo bregtest ok else